How can I install mod_wsgi from lfd website as it has wheel extension.Whenever I am searching how to install mod_wsgi on wamp the resources tell me to install binary from this site and then keep the mod_wsgi.so file in my wamp directory.
user4494541
问问题
890 次
2 回答
1
在 lfd 页面上是一个链接:
你可能想读一下。
官方 mod_wsgi 下载区域有二进制文件作为 .so 文件,如该链接中所述。
当您确定如何安装它们时,您仍然可以使用 whl 版本,但 .so 选项仍然存在。
于 2015-02-06T12:27:33.760 回答
0
LFD ( http://www.lfd.uci.edu/~gohlke/pythonlibs/#mod_wsgi ) 中的 WHL 文件确实包含预构建的 WSGI 模块,但由于不明原因,它被称为mod_wsgi.pyd
. 您可以在c:/python27/lib/site-packages/mod_wsgi/server/
(或任何您的 Python 安装或虚拟环境路径)中找到它。
如果是 Apache ,只需将其重命名为mod_wsgi.so
并将其复制到目录即可。modules
要获得一些有关设置 Apache 配置的初步帮助,您可以运行
c:/python27/Scripts\mod_wsgi-express.exe module-config
有关 Windows 和兼容性的更多信息mod_wsgi
可以在这里找到:https ://github.com/GrahamDumpleton/mod_wsgi/blob/master/win32/README.rst
于 2017-07-17T13:03:30.943 回答