I'm following the Django girls tutorial to create a simple web application (a blog) using Django.
See notes.md
.
$ pip install django
If you are starting it for the first time, you have to create a database first:
$ python manage.py migrate
This creates an sqlite3 database.
To run the server:
$ python manage.py runserver
Stop with Ctrl+C.