使用 mod_wsgi 导入 pandas 错误的问题
我开发了一个使用 pandas 的 Flask 应用程序。 当我使用启动 python 环境时 来源 myenv/bin/activate 和运行.py =>一切正常,应用程序运行正常 但是当我尝试使用 mod_wsgi 部署应用程序时,它会因导入 pandas 错误而崩溃 Pandas/init.py 第 13 行 Missing_dependency.append(f"{dependency}:{e}") 我错过了什么吗? 我使用标准 mod_wsgi 配置,该配置适用于另一个不使用 pandas 的应用程序 谢谢
I devlopped a flask app in which I use pandas.
When I start the python environment using
Source myenv/bin/activate
And run.py
=> everything is ok and the app run normally
But when I try to deploy the app using mod_wsgi it crushes with this importing pandas error
Pandas/init.py line 13
Missing_dependencies.append(f"{dependency}:{e}")
Am I missing something ?
I use the standard mod_wsgi config that is working for with another app that doesn't use pandas
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了解决我的问题的方法:
这是由于使用python 2来编译mod_wsgi
我把它改成了Python 3
现在一切正常
I found a solution for my problem:
It was due to python 2 used to compile mod_wsgi
I changed that to python 3
Now everything is working fine