如何将py_wsgi作为python安装到python安装中?

adi*_*tya 6 python mod-wsgi wsgi apache2 apxs2

当我尝试运行以下命令时,我无法在Windows上安装mod_wsgi:

pip install mod_wsgi
Run Code Online (Sandbox Code Playgroud)

它说-

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.
Run Code Online (Sandbox Code Playgroud)

它缺少apxs,这在我的默认apache安装中不存在.我怎么得到这个apxs?有没有其他方法来安装apache然后mod_wsgi到python安装?

编辑 - 我甚至尝试了pip install mod_wsgi-httpd,但它不能正常工作,因为它说 -

Failed to build APR.
Run Code Online (Sandbox Code Playgroud)

小智 3

这是因为您无法在 Windows 上使用 pip 可安装的 mod_wsgi。您需要使用预编译的二进制文件,如下所述:

https://github.com/GrahamDumpleton/mod_wsgi/blob/develop/win32/README.rst

礼貌:格雷厄姆·邓普尔顿(https://github.com/GrahamDumpleton/mod_wsgi/issues/76