一、安裝Django
pip install Djangopython
二、版本號查詢
python -m django --versiondjango
三、建立項目
切換到你想建立項目的目錄,執行命令:django-admin startproject dayang瀏覽器
命令執行成功後生成項目,目錄結構以下:
服務器
外面的一層目錄dayng 是項目的容器,注意不能命名爲Djangoapp
manage.py: 一個實用的命令行工具,可以讓你以各類方式與該 Django 項目進行交互。ide
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 包。this
dayang/settings.py: Django 項目的配置文件.url
dayang/urls.py: The URL declarations for this Django project; a 「table of contents」 of your Django-powered site.spa
dayang/wsgi.py: 一個 WSGI 兼容的 Web 服務器的入口,以便運行你的項目。
四、運行django項目
切換到目錄dayang執行命令:manage.py runserver
瀏覽器輸入http://127.0.0.1:8000/看到如下界面
運行成功!
小貼士:修改端口命令【manage.py runserver 8080】
五、建立app
切換到manage.py同級目錄,執行命令:manage.py startapp polls
如今的結構目錄以下:
六、編寫你的第一個視圖
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
查看運行結果: