mod_wsgi 和 EC2 如何针对提供的 httpd 进行编译
我正在尝试在 EC2 实例上安装 install mod_wsgi 。我正在使用 amazon 64bit linux ami ,问题是当该映像中不存在 apxs 时如何安装它。相反,它使用 httpd 进行 apache 配置。问题是 mod_wsgi 的编译版本是 python 2.6.6,其中核心 python 2.6.7
有关如何添加 --with-apxs=
有任何帮助吗?因为没有可用于编译的文件。
I'm trying to install install mod_wsgi on a EC2 instance. I'm using the amazon 64bit linux ami , and the problem is how do I install it when apxs doesn't exist in this image. Instead it uses httpd for the apache configuration. The problem is the compiled version of mod_wsgi is python 2.6.6 where the core python 2.6.7
Any help on how to do I add --with-apxs=
? since there isn't a file to use to compile.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只要 Python 安装提供共享库并且 mod_wsgi 使用 Python 共享库,补丁级别修订差异并不重要。请参阅:
http://code.google.com/p/modwsgi/wiki/InstallationIssues #Python_Version_Mismatch
仅当主/次版本不同时才会出现问题,例如一个用于 Python 2.6,另一个用于 Python 2.7。
It doesn't matter that there is a patch level revision difference so long as the Python installation provides a shared library and mod_wsgi is using the Python shared library. See:
http://code.google.com/p/modwsgi/wiki/InstallationIssues#Python_Version_Mismatch
There would only be an issue if the major/minor version were different such as one being for Python 2.6 and the other for Python 2.7.