Comme c'est un gros problème, je vais installer 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.
Quand j'essaye de me connecter à localhost: 8000, j'obtiens «Ça a marché!».
http://qiita.com/yoshikyoto/items/274ffd8bb8087902aec8