Django使用步驟

2022-05-16 17:19:54 字數 784 閱讀 8424

pip install django

django-admin startproject mysite

tree

tree

cd mysite

lspython3 manage.py -help

python3 manage.py runserver

#啟動服務

python3 manage.py runserver 8080 #

更改埠

python3 manage.py flush #

清空資料庫

python3 manage.py createsuperuser #

建立乙個超級使用者

python3 manage.py changepssword user #

修改使用者密碼

python3 manage.py shell #

缺省會進入ipython

python3 manage.py dbshell #

進入資料庫

python3 manage.py makemigrations testmodel #

讓 django 知道我們在我們的模型有一些變更

python3 manage.py migrate #

建立表結構

vim settings.py

#配置檔案

django使用步驟

wget tar xzvf django 1.1.1.tar.gz cd django 1.1.1 sudo python setup.py install 檢測安裝是否成功 python import django django.version 建立專案frontend 在這裡遇到乙個小問題,我使...

django使用步驟

wget tar xzvf django 1.1.1.tar.gz cd django 1.1.1 sudo python setup.py install 檢測安裝是否成功 python import django django.version 建立專案frontend 在這裡遇到乙個小問題,我使...

django使用步驟

wget tar xzvf django 1.1.1.tar.gz cd django 1.1.1 sudo python setup.py install 檢測安裝是否成功 python import django django.version 建立專案frontend 在這裡遇到乙個小問題,我使...