參考https://www.cnblogs.com/yuyang26/p/7411269.html
前提條件:python3.x環境 windows
步驟1
pip install Django==2.1.4 進行安裝 確認安裝

步驟2 創建項目
cd 進入你想存放項目的路徑(書上的無腦操作都是存放到python安裝路徑scripts下) 執行 django-admin startproject autotset 創建項目
cd 進入autotest目錄下,執行python manage.py runserver 啟動django項目
默認端口是8000 如果要修改端口,執行 python manage.py runserver ip:8001
