--Until ʻIt worked! --Because I just can't remember the command name
django-admin.py --Rewrite
MY_NEW_APP` with the project name as appropriate
$ virtualenv MY_NEW_APP && cd $_
$ source bin/activate
$ pip install django
$ django-admin.py startproject project && cd $_
$ python manage.py migrate
$ python ./manage.py runserver
Recommended Posts