1. How to install django?
Install it with pip. In Windows, cmd command:
pip install Django==1.10.1
Or you can download it and install it by yourself.
- cd to the dir of your downloading django, where setup.py is in.
- python setup.py install
2. Test whether install it successfully.
In python shell,
>>> import django
>>> django.VERSION
(1, 8, 14, 'final', 0)