1、安装Django
pip install Django
2、版本号查询
python -m django --version
3、创建项目
切换到你想创建项目的目录,执行命令:django-admin startproject dayang
命令执行成功后生成项目,目录结构如下:
外面的一层目录dayng 是项目的容器,注意不能命名为Django
manage.py: 一个实用的命令行工具,可让你以各种方式与该 Django 项目进行交互。
The inner dayang/ directory is the actual Python package for your project. Its name is the Python package name you’ll need to use to import anything inside it (e.g. dayang.urls).
dayang/__init__.py: 一个空文件,告诉 Python 该目录是一个 Python 包。
dayang/settings.py: Django 项目的配置文件.
dayang/urls.py: The URL declarations for this Django project; a “table of contents” of your Django-powered site.
dayang/wsgi.py: 一个 WSGI 兼容的 Web 服务器的入口,以便运行你的项目。
4、运行django项目
切换到目录dayang执行命令:manage.py runserver
浏览器输入http://127.0.0.1:8000/看到以下界面
运行成功!
小贴士:修改端口命令【manage.py runserver 8080】
5、创建app
切换到manage.py同级目录,执行命令:manage.py startapp polls
现在的结构目录如下:
6、编写你的第一个视图
To call the view, we need to map it to a URL - and for this we need a URLconf.
新建文件urls.py
The next step is to point the root URLconf at the polls.urls module.
运行命令:manager.py runserver
查看运行结果:
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。