使用PyCharm

时间:2017-09-13 21:32:01

标签: python flask gunicorn

我想单步浏览使用PyCharm CE在Gunicorn下运行的Hello-World Flask应用程序。

应用程序是/tmp/hello-world/app中通常的5-10班轮,而且{@ 1}}中有一个。{/ p>

我的PyCharm配置如下所示:

/tmp/env

应用程序使用Script: /tmp/env/bin/gunicorn Script parameters: /tmp/hello-world/app:app Working directory: /tmp/hello-world 从该命令行的命令行运行正常,但是当我在PyCharm CE下启动服务器时,gunicorn的内部导入失败:

gunicorn app:app

不起作用的解决方案:

1 个答案:

答案 0 :(得分:1)

错误很清楚。你试图通过给它一个文件路径按文件名导入。尝试将脚本参数更改为app:app,它应该可以正常工作。