本人于2009年12月迁移至独立BLOG。
1、欢迎光临运维进行时,希望认识更多志向相同的朋友!
2、本站部分资源来源于网络,如有侵权请及时与我联系!
3、强烈建议使用Firefox、Opera、Safari及IE7以上的浏览器访问,以获得最佳浏览质量!
4、请勿发表与中华人民共和国法律、法规相抵触的言论,谢谢合作!
5、本人发布的文章与评论内容仅代表本人观点。
分页: 1/1 第一页 1 最后页 [ 显示模式: 摘要 | 列表 ]

Centos+lighttpd+flup+fastcgi+django 不指定

root , 2008/05/22 16:51 , Python , 评论(0) , 阅读(9347) , Via 本站原创
一、安装lighttpd、django略

二、安装flup
引用

wget -c http://www.saddi.com/software/flup/dist/flup-0.5.tar.gz
tar xzvf flup-0.5.tar.gz
cd flup-0.5
python setup.py install
提示:
---------------------------------------
The required version of setuptools (>=0.6c6) is not available, and
can't be installed while this script is running. Please install
a more recent version first.

(Currently using setuptools 0.6c5 (/usr/local/lib/python2.5/site-packages/setuptools-0.6c5-py2.5.egg))
---------------------------------------
原因是我的setuptools的版本过低。

wget http://pypi.python.org/packages/2.5/s/setuptools/setuptools-0.6c6-py2.5.egg
chmod +x setuptools-0.6c6-py2.5.egg
./setuptools-0.6c6-py2.5.egg
再安装flup
python setup.py install
搞定:)
分页: 1/1 第一页 1 最后页 [ 显示模式: 摘要 | 列表 ]