我正在开发一个 django 应用程序,并尝试在推送到 heroku 之前使用工头在本地测试我的应用程序。我可以使用 python manage.py 服务器成功运行它。但是,当使用 forman 运行它时,它会失败 - 每当我foreman start
在目录内部执行操作时,它都会返回给我:
09:21:09 web.1 | started with pid 9956
09:21:09 web.1 | /usr/local/foreman/bin/foreman-runner: line 41: exec: gunicorn: not found
09:21:09 web.1 | exited with code 127
09:21:09 system | sending SIGTERM to all processes
SIGTERM received
这是什么意思?
下面是我的Procfile:
web: gunicorn myapp.wsgi
下面是我的requirements.txt
Django==1.4.3
distribute==0.6.31
dj-database-url==0.2.1
psycopg2==2.4.6
#wsgiref==0.1.2
gunicorn==0.16.1
我在这里先向您的帮助表示感谢!