【发布时间】:2015-12-31 22:12:32
【问题描述】:
当我尝试运行以下命令时,我无法在 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:\users\aditya\appdata\local\temp\pip-build-ffaywu\mod-wsgi\setup.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 install mod_wsgi-httpd,但它并没有像它说的那样工作——
Failed to build APR.
【问题讨论】:
标签: python apache2 mod-wsgi wsgi apxs2