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

Djangoの前に、仮想環境(venv)をつくるメモの続きです。
仮想環境ができたらDjangoをインストールしたり必要なフォルダを揃えたり、軽く下準備をします。
Djangogirlチュートリアル内の手順だけを抽出したメモです。細かい説明やエラー対処はこちらへ↓
参照:https://tutorial.djangogirls.org/ja/django_installation/

##Djangoのインストール
仮想環境を実行した状態が前提。コンソールで行頭に(dj_kasou) のような括弧で囲まれた仮想環境のフォルダ名がついてればオッケー。

###①最新バージョンのpipをインストール
Djangoをインストールするためのpipが必要。

python -m pip install --upgrade pip

###②requirementsを作成
仮想環境フォルダと同じ階層(今回の場合でいうと(dj_project) の直下)にrequirements.txtのファイルを作成してrequirements.txtに以下のテキストを追加。

Django~=2.2.4

※ファイルの位置はこんなん
dj_project
├── dj_kasou
│ └── ...
└───requirements.txt

###③Djangoをインストール
以下を実行

pip install -r requirements.txt

下の文章っぽいのがでれば成功。

Successfully installed Django-2.2.4

以上です。これで下準備は大方整ったのでアプリの作成に突入〜
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?