我怎么说 wsgi apache 的解释器版本
在debian中,最近将python的默认版本从2.5更改为2.6,但我需要2.5,我如何配置apache和/或wsgi脚本以使其使用pythons2.5而不是python默认版本?
In debian recently change de default version of python from 2.5 to 2.6 but i need 2.5, how i can configure apache and/or wsgi script to say it use pythons2.5 and not python default?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须安装针对 Python 2.5 编译的 mod_wsgi 软件包二进制文件,或者自己针对 Python 2.5 版本从源代码编译 mod_wsgi。请参阅有关 --with-python 选项的注释:
http://code.google .com/p/modwsgi/wiki/QuickInstallationGuide#Configuring_The_Source_Code
You must install mod_wsgi package binary compiled against Python 2.5, or compile mod_wsgi from source code yourself against the Python 2.5 version. See notes about --with-python option in:
http://code.google.com/p/modwsgi/wiki/QuickInstallationGuide#Configuring_The_Source_Code
您需要针对适当版本的 Python 重新编译 mod_wsgi。
You'll need to recompile mod_wsgi against the appropriate version of Python.