Django 是如何做到的? mod_wsgi影响python路径吗?
我在 /domains/somedomain.com/libs/ 中对 python 库进行了简单的设置,并且所有测试都运行良好。我使用 DJANGO_SETTINGS_MODULE 启动 WSGI 到“somedomain.settings”,其中 somedomain 是 libs/ 中的一个包。
突然,当将 pywapi.py 添加到 libs/ 中时,我无法在访问该站点时导入它。但是,如果我将“import pywapi”添加到我的 wsgi 脚本中,那么当被 Apache 命中时它会失败,但如果我只是编写它就会成功。 WSGI 本身实际上将 libs/ 添加到路径中,所以我知道它在运行时应该在那里。该路径也是绝对路径,因此 CWD 的任何更改都不会导致此问题。
我想不出其他的事情了,我早上的一半时间都在修补它。
I have a simple setup with my python libraries in /domains/somedomain.com/libs/ and all my tests run fine. I start WSGI with DJANGO_SETTINGS_MODULE to "somedomain.settings" where somedomain is a package in libs/
Suddenly, when adding pywapi.py into libs/ I can't import it when hitting the site. But, if I add 'import pywapi' to my wsgi script, it fails when hit by Apache, but succeeds if I just write it. the WSGI itself is actually adding libs/ to the path, so I know it should be there when running. The path is absolute, too, so any change in CWD shouldn't be causing this.
I can't think of anything else and I've been tinkering with it half of my otherwise productive morning.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为问题与该文件的权限有关。检查运行 wsgi 的用户(通常是 apache 用户)是否能够读取和写入 libs 文件夹中的所有内容,特别是能够读取文件 pywapi.py。
I think the problem is related with the permissions of that file. Check that the user running wsgi (apache user, usually) is capable of reading and writing the everything in the libs folder and specially capable of reading the file pywapi.py.