本篇文章給大家分享的是有關(guān)Python安裝筆記的實(shí)際應(yīng)用的九種步驟分別是什么,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
成都創(chuàng)新互聯(lián)公司專注于企業(yè)營銷型網(wǎng)站、網(wǎng)站重做改版、輪臺網(wǎng)站定制設(shè)計、自適應(yīng)品牌網(wǎng)站建設(shè)、H5技術(shù)、成都商城網(wǎng)站開發(fā)、集團(tuán)公司官網(wǎng)建設(shè)、外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計等建站業(yè)務(wù),價格優(yōu)惠性價比高,為輪臺等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。
以下步驟是自己配置過程一些記錄。另外請注意測試代碼的縮進(jìn)。
1.下載個新版 (注意版本問題apache和python版本)
2.拷到linux機(jī)器上,下面在命令行執(zhí)行Python安裝筆記:
tar -zxvf mod_python-3.3.1.tgz cd mod_python-3.3.1 ./configure --with-apxs=/usr/local/apache/bin/apxs
配置apxs目錄
./configure --with-python=/usr/bin/python2.5
配置本地python
make make install
3.這些編譯完了,會在apache/modules/目錄下生成mod_python.so,大概3M左右。
4.配置apache的http.conf
LoadModule python_module modules/mod_python.so
能用apache訪問的目錄
#AddHandler mod_python .py SetHandler mod_python PythonHandler mod_python.publisher PythonDebug On
5.測試在/usr/modpython/目錄下新建一個test.py
#coding:gb2312 def index(req): req.write("hello,world!") return
6.運(yùn)行Python安裝筆記,啟動apache沒有錯誤后,
7.定義其他方法:
#coding:gb2312 def index(req): req.write("hello,world!") return def hello(req): req.write("hello!!!") return
8.傳遞參數(shù)
def get(req,name=""): if name: req.write("參數(shù):"+name); else: req.write("no param."); return
POST表單一樣,只要參數(shù)名寫對就行。
9.python包在當(dāng)前目錄下建立一個包,然后在test.py導(dǎo)入時候會出錯,找不到包。后來修改了下方法
import os,sys sys.path.append(os.path.dirname(__file__))
把當(dāng)前目錄加入到sys.path中import 自己的包
以上就是Python安裝筆記的實(shí)際應(yīng)用的九種步驟分別是什么,小編相信有部分知識點(diǎn)可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。