搜索
您的当前位置:首页正文

Install django

来源:知库网
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)

3. Start to use django

Top