本人于2009年12月迁移至独立BLOG。
1、欢迎光临运维进行时,希望认识更多志向相同的朋友!
2、本站部分资源来源于网络,如有侵权请及时与我联系!
3、强烈建议使用Firefox、Opera、Safari及IE7以上的浏览器访问,以获得最佳浏览质量!
4、请勿发表与中华人民共和国法律、法规相抵触的言论,谢谢合作!
5、本人发布的文章与评论内容仅代表本人观点。
1、欢迎光临运维进行时,希望认识更多志向相同的朋友!
2、本站部分资源来源于网络,如有侵权请及时与我联系!
3、强烈建议使用Firefox、Opera、Safari及IE7以上的浏览器访问,以获得最佳浏览质量!
4、请勿发表与中华人民共和国法律、法规相抵触的言论,谢谢合作!
5、本人发布的文章与评论内容仅代表本人观点。
前年给部门做的"Django敏捷开发"PPT,部分内容来之django- step by step。PPT排版比较糟糕,每张版面内容都很饱满,可读性比较差。
Django敏捷开发 刘天斯
View more presentations from liuts.
一、安装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
搞定:)
二、安装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
搞定:)