Install django

2016-09-26  本文已影响7人  ibyr
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.

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

上一篇下一篇

猜你喜欢

热点阅读