本文介绍了导入 pandas 后 Flask 挂起(还有 numpy、matplotlib 等)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
为什么 Flask 在导入 pandas 库或其他几个科学库后挂起?当通过 SSH 在本地运行时,它仍然有效,但在访问 URL 时,浏览器加载并加载,没有任何反应.
Why is Flask hanging after importing the pandas lib or several other scientific libs? It still works, when running it locally via SSH, but when visiting the URL the browser loads and loads and nothing happens.
推荐答案
该解决方案适用于带有 Apache2 服务器的 Ubuntu.您必须配置以下文件:
The solution is for Ubuntu with Apache2 server. You have to configure the following file:
/etc/apache2/sites-available/your-flask-app-file.conf
将以下行粘贴到 WSGIScriptAlias 下方:
paste the following line below WSGIScriptAlias:
WSGIApplicationGroup %{GLOBAL}
这篇关于导入 pandas 后 Flask 挂起(还有 numpy、matplotlib 等)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!