python 2.6.4不支持mod_python?
我正在寻找一种仅使用我的 xampp 来运行 django 的方法,我在网上偶然发现了这个教程 http://jyotirmaya.blogspot.com/2008/11/xampp- python-django.html 据作者称,python 2.6 不支持 mod_python 3.3.1,但我认为该博客文章是一年多前创建的。这件事到现在还成立吗?或者如果我使用 2.6 并将其与 mod python 3.3.1 结合起来可以吗?
am looking for a way to run django by just using my xampp, and i bumped into this tutorial online
http://jyotirmaya.blogspot.com/2008/11/xampp-python-django.html
according to the author, mod_python 3.3.1 is not supported by python 2.6, but the blog post was created more then a year ago i think. is this thing still true until now? or its ok if I will use 2.6 and combine it with mod python 3.3.1 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
mod_python 必须针对处理程序将在其中运行的特定 Python 版本进行编译。当时可能没有针对 2.6.4 构建的 mod_python Windows 安装程序,因此引起了轩然大波。
平心而论,您可能应该使用 mod_wsgi 来运行 Django 应用。
mod_python must be compiled against the specific version of Python that the handler will be run in. At the time there was probably no Windows installer for mod_python built against 2.6.4, hence the hysteria.
In all fairness, you should probably be using mod_wsgi to run Django apps instead.