启动时在python中运行的gunicorn会挂起吗?

时间:2018-01-26 11:28:37

标签: python flask keras gunicorn

我正在运行一个包含keras模型的Python脚本,这些模型应该使用烧瓶应用程序和gunicorn运行。它上面的烧瓶服务器运行正常,但是当我尝试将gunicorn与它集成时,工作人员在启动后挂起。这是我看到的最后两个陈述:

[2018-01-26 12:17:35 +0000] [32225] [INFO] Booting worker with pid: 32225
2018-01-26 12:17:36.651087: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA

在集成gunicorn后,我无法再在浏览器中访问烧瓶。这是主要问题。我试着降低工人的超时时间,但没有什么区别。

1 个答案:

答案 0 :(得分:0)

我修好了。这个问题与在我的脚本中安装库有关,其中一些是我丢失的,因为我使用了sudo -H而不是sudo来解决这个问题。