1.创建虚拟环境
virtualenv test
2.进入虚拟环境
source ./项目名/Scripts/activate
3.创建项目
django-admin startproject 项目名
4.创建数据库
python manage.py migrate
5.创建应用
python manage.py startapp 应用名
6.查看项目
python manage.py runserver
浏览器输入:127.0.0.1:8000即可查看
项目名
项目名
__init__.py
settings.py
urls.py
wsgi.py
manage.py
db.sqlite3
应用名
__init__.py
admin.py
apps.py
models.py
tests.py
views.py
migrations