The solution to https://docs.djangoproject.com/en/dev/intro/tutorial01/
Requirement:
- python 3.4
- Django 1.8
Setup:
- Make a new virtualenv: virtualenv venv
- Activate the virtualenv: source venv/bin/activate
- Install Django: pip install Django
- Run the server: python manage.py runserver
- Open website in browser at http://localhost:8000/polls or admin at http://localhost:8000/admin (admin:admin)