0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Djangoの環境構築

Posted at

###実行環境

Python 3.9.7
Django 3.2.7
Windows10

###手順
1.Vscodeのインストール
2.Pythonのインストール
3.仮想環境構築
4.プロジェクト作成

####1.Vscodeのインストール
公式サイトにアクセスしてインストール。

####2.Pythonのインストール
公式サイトにアクセスしてインストール。
インストールする前に画面の下のチェックボックスの"Add Python3.9 to PATH"にチェックを入れる。
環境変数設定をする際に必要。

####3.仮想環境構築
デスクトップにフォルダを作成(なんでもいい)。
Vscodeで作成したフォルダを開く。
ターミナルを開いて(Ctrl+@)pythonのversionを確認。

仮想環境を作成するためのPipenvをインストール。

上で作成したフォルダ
pip install pipenv

Djangoのインストール

pipenv install Django

仮想環境を作成するコマンドは

上で作成したフォルダ
python -m venv <仮想環境フォルダ名>

次にシステム環境変数にパスを通す。
Windowsのシステム環境変数にパスを通すことで、ターミナル上でプログラム名を入れるだけでプログラムを実行できるようになる。

####4.プロジェクト作成
cd <仮想環境フォルダ名>でフォルダに移動して、プロジェクトを作成。

仮想環境フォルダ
django-admin startproject config .

サーバーを起動。(python manage.py runserver)

127.0.0.1:8000で確認。
成功画面

###さいごに
環境構築がこれまで面倒くさかったのでawsのcloud9を使用していたが、そこまで面倒ではなかった。
これから、Djangoの勉強としてECサイトの作成を行っていきたい。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?