美文网首页
Install django

Install django

作者: ibyr | 来源:发表于2016-09-26 11:33 被阅读7次
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

To start a project: django-admin startproject mysite
To run server:
cd to the dir of manage.py
python manage.py runserver
open browser: http://localhost:8000

相关文章

网友评论

      本文标题:Install django

      本文链接:https://www.haomeiwen.com/subject/owkqyttx.html