gpt4 book ai didi

python - Windows 上的 mod_wsgi WSGIPythonPath 多路径

转载 作者:可可西里 更新时间:2023-11-01 10:45:54 24 4
gpt4 key购买 nike

Windows 8.1 x64 - Python 3.4.1 (pyzo_distro-2014a.win64) - Apache httpd-2.4.10-win64 - mod_wsgi-3.5.ap24.win-amd64-py3.4

如何设置多个路径?
好像只设置了最后一条路径。

WSGIPythonPath C:/test1;C:/test2;C:/test3

在 Apache 日志文件中(带有 LogLevel 信息):

mod_wsgi (pid=3568): Initializing Python.
mod_wsgi (pid=3568): Attach interpreter ''.
mod_wsgi (pid=3568): Adding '(null)' to path.
mod_wsgi (pid=3568): Adding '(null)' to path.
mod_wsgi (pid=3568): Adding 'C:/test3' to path.
AH00354: Child: Starting 64 worker threads.

同样的结果:

WSGIPythonPath "C:/test1;C:/test2;C:/test3"

这行不通:

WSGIPythonPath "C:/test1";"C:/test2";"C:/test3"

因为 WSGIPythonPath 只接受一个参数。

谢谢。

最佳答案

作为使用 WSGIPythonPath 指令添加目录的替代方法,您可以从代码中将目录添加到路径:

import sys, os
paths = ['C:\test1', 'C:\test2', 'C:\test3']
for path in paths:
if path not in sys.path:
sys.path.append(path)

或者,如果你需要添加当前目录(对于 Flask/Webapp2 并不少见),你可以放置

您可以将以下内容放在 main.py 中其他导入的上方:

import sys, os
path = os.path.dirname(os.path.abspath(__file__))
if path not in sys.path:
sys.path.append(path)

假设您的 Apache 服务器配置如下所示:

WSGIScriptAlias /scripts "C:/web/wsgi_scripts/main.py"
WSGICallableObject app

<Directory "C:/web/wsgi_scripts">
<Files main.py>
Require all granted
</Files>
</Directory>

关于python - Windows 上的 mod_wsgi WSGIPythonPath 多路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26163113/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com