Since it's a big deal, I will install Python3.
$ brew install python3
$ python3 --version
Python 3.4.3
$ sudo pip install django
...
Successfully installed django-1.8.3
$ pip freeze -l
...
Django==1.8.3
...
$ django-admin.py startproject project
$ ls
project
$ python manage.py migrate
...
$ python manage.py runserver
...
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.
When I try to connect to localhost: 8000, I get ʻIt worked!`.
http://qiita.com/yoshikyoto/items/274ffd8bb8087902aec8
Recommended Posts