天天看點

python django web 開源項目_Python Web開發最火的開源項目是什麼樣的,沒學到也應該知道!...

前語

Python很火!Django是Python Web開發很火的開源項目,架構功用較齊全,而且項目也一直都在更新優化,很值得一用。現在最新穩定版别是2.0.4,最新的lts版别是1.11。

裝置

能夠經過pip就能夠裝置django了:

pip install django

或許

pip install django==1.11.9 #指定版别

創立項目

裝置完後會有一個django-admin的腳本能夠創立項目和使用就能夠開始程式設計:

cd /home/yunweicai

django-admin startproject mysite

cd mysite

django-admin startapp web01

運作

在項目創立的時分就有一些預設的裝備,在不創立的app的情況下會加載幾個常用的app。

是以,刻不容緩的能夠先測試一下自己新創立的項目:

cd /home/yunweicai/mysite

python manager.py runserver

Performing system checks...

System check identified no issues (0 silenced).

You have 13 unapplied migration(s). Your project may not work properly until you apply the migrations for app(s): admin, auth, contenttypes, sessions.

Run 'python manage.py migrate' to apply them.

January 22, 2018 - 13:51:44

Django version 1.11.9, using settings 'mysite.settings'

Starting development server at http://127.0.0.1:8000/

Quit the server with CONTROL-C.

提示現已運作服務:http://127.0.0.1:8000/,經過浏覽器拜訪就能夠看到,現已能夠拜訪到頁面了。