使用 mod_wsgi 导入 pandas 错误的问题

发布于 2025-01-09 03:41:43 字数 289 浏览 0 评论 0原文

我开发了一个使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南渊 2025-01-16 03:41:43

我找到了解决我的问题的方法:
这是由于使用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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文