0
0

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での環境構築(vscode)

毎度のことながら、環境構築は苦手?というか、未だに具体的に何が怒っているのか理解していないため、一から忘れないようにということで手順立てて書いていこうと思う。

##1. ターミナル上にpipenvをインストールしてくる

~brew install pipenv
~pip install pipenv
~pip3 install pipenv

自分はHomebrewを使っているので一番上のやつでインストールしている。

##2. アプリ作成用フォルダを作る

これはいつも通り自分は適当にデスクトップ上に作っているので

~cd Desktop
~mkdir フォルダ名
~cd 作成したフォルダ

##3. djangoのインストール
~pipenv install django

##4. djangoをインストールしたということを教えてあげる
~pipenv shell
*やめたい時のコマンドはexit()
##5. 設定用プロジェクトを立ち上げる
~django-admin startproject config .

##6. 自分で作りたいプロジェクトを立ち上げる
~django-admin startproject プロジェクト名

###終わりに
これで、djangoを使う環境構築は終わった。
環境構築で無駄な時間を取られることはないだろう

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?