当我试图运行以下命令时,我无法在windows上安装mod_wsgi:
pip install mod_wsgi
它说,
Collecting mod-wsgi
Using cached mod_wsgi-4.4.14.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 20, in <module>
File "c:usersadityaappdatalocaltemppip-build-ffaywumod-wsgisetup.p
y", line 139, in <module>
'missing Apache httpd server packages.' % APXS)
RuntimeError: The 'apxs' command appears not to be installed or is not
executable. Please check the list of prerequisites in the documentation
for this package and install any missing Apache httpd server packages.
它缺少apxs,这在我的默认apache安装中不存在。我怎么得到这个apxs ??是否有其他方法安装apache,然后mod_wsgi到python安装?
编辑-我甚至尝试pip安装mod_wsgi-httpd,但它不工作,因为它说-
Failed to build APR.
这是因为您不能在Windows上使用pip可安装的mod_wsgi。您需要使用预编译的二进制文件,如下所示:
https://github.com/GrahamDumpleton/mod_wsgi/blob/develop/win32/README.rst来源:GrahamDumpleton (https://github.com/GrahamDumpleton/mod_wsgi/issues/76)