您好,登錄后才能下訂單哦!
這篇“Ubuntu下如何部署django、python和mysql環(huán)境”文章的知識點大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Ubuntu下如何部署django、python和mysql環(huán)境”文章吧。
一、python環(huán)境搭建
操作系統(tǒng)ubuntu14.04,自帶python2.7.6
im@58user:/$ python python 2.7.6 (default, oct 26 2016, 20:30:19) [gcc 4.8.4] on linux2 type "help", "copyright", "credits" or "license" for more information. >>>
二、django環(huán)境搭建
目前django的版本已經(jīng)到1.11了。先去官網(wǎng)下載linux對應(yīng)的文件,然后解壓&安裝。()
tar xzvf django-1.11.x.tar.gz cd django-1.11.x sudo python setup.py install
這時可能會提示importerror: no module named setuptools
執(zhí)行
sudo https://bootstrap.pypa.io/ez_setup.py -o - | sudo python
然后執(zhí)行
python setyp.py install```
到此django安裝成功~!
三、mysql安裝
執(zhí)行一下命令,運行過程中可能需要輸入root密碼并進行確認。
sudo apt-get install mysql-server mysql-client sudo apt-get install libmysqld-dev
然后鏈接mysql和python
sudo apt-get install python-dev sudo wget https://pypi.python.org/packages/source/m/mysql-python/mysql-python-1.2.5.zip unzip mysql-python-1.2.5.zip cd mysql-python-1.2.5/ sudo python setup.py install
進入mysql數(shù)據(jù)庫的方式:
> * sudo mysql * mysql -u root -p 然后輸入密碼
四、給mysql設(shè)置root密碼
先以第一種方式進入mysql
mysql> use mysql; reading table information for completion of table and column names you can turn off this feature to get a quicker startup with -a database changed mysql> update user set password = password(‘root') where user ='root'; query ok, 3 rows affected (0.00 sec) rows matched: 3 changed: 3 warnings: 0 mysql> exit
括號里面的'root'就是新的密碼
五、新建項目
到了驗證結(jié)果的時候了
將當前目錄切換到python的worspace下,輸入新建的項目名稱:
im@58user:~/pythonprojects$django-admin.py startproject hello im@58user:~/pythonprojects$ cd hello/ im@58user:~/pythonprojects/hello$ tree ├── hello │ ├── init.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── manage.py
* __init__.py:python特性,可以是空文件,表明這個文件夾是一個可以導(dǎo)入的包。
* settings.py:配置文件,本文主要修改數(shù)據(jù)庫信息、模板目錄、加載模塊的信息。
* url.py:url配置文件,指定函數(shù)與url的映射關(guān)系。
* wsgi.py:本文中不會使用,nginx/apache+wsgi在生產(chǎn)環(huán)境中運行django時使用
接下來我們寫一個helloworld頁面。
在hello文件下的一級目錄創(chuàng)建views.py文件
im@58user:~/pythonprojects/hello$ touch views.py im@58user:~/pythonprojects/hello$ ls hello manage.py views.py im@58user:~/pythonprojects/hello$ tree . ├── hello │ ├── init.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py └── views.py 1 directory, 6 files
在views.py文件中寫入下面代碼
from django.http import httpresponse def hello(request): return httpresponse(“hello world~!~!”)
然后再將路徑添加在urls.py文件中
from django.conf.urls import url from django.contrib import admin from views import hello urlpatterns = [ url(r'^admin/‘, admin.site.urls), url(r'^hello/‘, hello), ]
然后在hello目錄下執(zhí)行python manage.py runserver 0.0.0.0:8080
啟動服務(wù)器
打開瀏覽器訪問http://127.0.0.1:8000/hello/
可以看到展示結(jié)果。
以上就是關(guān)于“Ubuntu下如何部署django、python和mysql環(huán)境”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關(guān)的知識內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。