這篇“Ubuntu下如何部署django、python和MySQL環(huán)境”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來(lái)看看這篇“Ubuntu下如何部署django、python和mysql環(huán)境”文章吧。
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來(lái)自于我們對(duì)這個(gè)行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡(jiǎn)單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:申請(qǐng)域名、網(wǎng)絡(luò)空間、營(yíng)銷軟件、網(wǎng)站建設(shè)、東風(fēng)網(wǎng)站維護(hù)、網(wǎng)站推廣。
一、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對(duì)應(yīng)的文件,然后解壓&安裝。()
tar xzvf django-1.11.x.tar.gz cd django-1.11.x sudo python setup.py install
這時(shí)可能會(huì)提示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í)行一下命令,運(yùn)行過程中可能需要輸入root密碼并進(jìn)行確認(rèn)。
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
進(jìn)入mysql數(shù)據(jù)庫(kù)的方式:
> * sudo mysql * mysql -u root -p 然后輸入密碼
四、給mysql設(shè)置root密碼
先以第一種方式進(jìn)入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
括號(hào)里面的'root'就是新的密碼
五、新建項(xiàng)目
到了驗(yàn)證結(jié)果的時(shí)候了
將當(dāng)前目錄切換到python的worspace下,輸入新建的項(xiàng)目名稱:
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特性,可以是空文件,表明這個(gè)文件夾是一個(gè)可以導(dǎo)入的包。
* settings.py:配置文件,本文主要修改數(shù)據(jù)庫(kù)信息、模板目錄、加載模塊的信息。
* url.py:url配置文件,指定函數(shù)與url的映射關(guān)系。
* wsgi.py:本文中不會(huì)使用,nginx/apache+wsgi在生產(chǎn)環(huán)境中運(yùn)行django時(shí)使用
接下來(lái)我們寫一個(gè)helloworld頁(yè)面。
在hello文件下的一級(jí)目錄創(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
啟動(dòng)服務(wù)器
打開瀏覽器訪問http://127.0.0.1:8000/hello/
可以看到展示結(jié)果。
以上就是關(guān)于“Ubuntu下如何部署django、python和mysql環(huán)境”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。