1. 安裝django
pip install django==1.11.7
2.檢查django是否安裝成功
3.建立django專案
django-admin.py startproject helloworld
5. 建立資料庫表 或 更改資料庫表或字段
django 1.7.1及以上 用以下命令
# 1. 建立更改的檔案
python manage.py makemigrations
# 2. 將生成的py檔案應用到資料庫
python manage.py migrate
舊版本的django 1.6及以下用
python manage.py syncdb
6. 使用開發伺服器
python manage.py runserver
python manage.py runserver 0.0.0.0:8000
7.建立超級管理員
python manage.py createsuperuser
# 按照提示輸入使用者名稱和對應的密碼就好了郵箱可以留空,使用者名稱和密碼必填
# 修改 使用者密碼可以用:
python manage.py changepassword username
8.匯出資料 匯入資料
9.資料庫命令列
python manage.py dbshell
10.清空資料庫
python manage.py flush
Django 基本命令
開啟 linux 或 macos 的 terminal 終端 直接在 終端中輸入這些命令 不是 python 的 shell中 如果是 windows 用 cmd 開始 搜尋 cmd 或者 快捷鍵 win r,輸入 cmd 直接在 cmd 上操作。1 2 django admin.py startp...
django基本命令
1.新建乙個 django project django admin.py startproject project name 3.建立資料庫表 或 更改資料庫表或字段 1.建立更改的檔案 python manage.py makemigrations 2.將生成的py檔案應用到資料庫 python...
Django基本命令
python manage.py makemigrations python manage.py migrate python manage.py flush 選擇yes,會把資料全部清除,留下空表 python manage.py createsuperuser 按照提示輸入使用者名稱和對應的密碼...