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 pycharmを使った  環境構築

Last updated at Posted at 2020-03-13

ターミナルで 
sudo xcode-select --install 入力

Homebrewのインストール

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

その次に
export PATH=/usr/local/bin:$PATH

python3をインストール
brew install python3

pythonのバージョンを確認
python3 --version

Djangoのインストール
pip install django

※上にある▼を押してedit Configurationを選択して
python interpreterで3.6が選択されているか確認する

ターミナルで
django-admin startproject (開発ファイル名)

入力するとdjangoのファイルが出来る

cd (開発ファイル名)
でファイルに移動できる

No python interpreter と出てきたのでpythonのバージョンを設定しました

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?