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 1 year has passed since last update.

Python, Djangoの環境構築 (windows)

Last updated at Posted at 2022-10-17

【Pythonのインストール】
1.最新のPythonのインストーラーをダウンロード
2.ダウンロードしたパッケージを実行(その際「Add Python 3.x to PATH」をチェック)
3.コマンドプロンプトで「py --version」を実行し、「Python 3.XX.XX」と表示されることを確認

【仮想環境の設定】
・virtualenvのインストール(初回のみ)
1.コマンドプロンプトで「pip install virtualenv」を実行
2.「pip freeze」を実行し、インストールされたことを確認

・仮想環境の作成
1.コマンドプロンプトで仮想環境を構築したいディレクトリに移動
2.「virtualenv env」を実行
3.指定したディレクトリに「env」フォルダが作成されたことを確認

・仮想環境の実行/終了
1.コマンドプロンプトで仮想環境を構築したディレクトリに移動
2.実行する場合、「env\Scripts\activate」を実行
3.終了する場合、「deactivate」を実行

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?