LoginSignup
6
4

More than 5 years have passed since last update.

IntelliJですばやくPythonDjango環境を構築する

Last updated at Posted at 2016-08-27

1.Python3をインストール

せっかくなのでPython3をbrewでインストールします。

$brew update
$brew install python3
$python3 -V
Python 3.5.2

バージョン確認オプションは-Vなので注意。
-vは別オプションです。

2.Djangoをインストール

$python3 -m pip install django
$python3 -m django --version
1.10

3.Pythonプラグインをインストール

Preference > Plugins > Install JetBrains plugin...

python で検索してインストール&Restart

Kobito.Bflwm4.png

4.Pythonプロジェクトを作成

Kobito.bxU1pc.png

5.Run!!!

http://127.0.0.1:5000/ にアクセスすると

Kobito.JLdMde.png

いいね!

6
4
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
6
4