天天看点

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/,经过浏览器拜访就能够看到,现已能够拜访到页面了。