環境
- Mac
Python3のインストール
せっかくなのでPython3をインストールします。
$ brew install python3
$ python3 --version
Python 3.4.3
Djangoのインストール
$ sudo pip install django
...
Successfully installed django-1.8.3
$ pip freeze -l
...
Django==1.8.3
...
Djangoプロジェクトの作成
$ django-admin.py startproject project
$ ls
project
Djangoプロジェクトのマイグレーションと起動
$ python manage.py migrate
...
$ python manage.py runserver
...
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.
localhost:8000 に接続してみると、It worked!
と表示されます。
次回