找不到gunicorn命令,但它位于my requirements.txt中

2024-06-16 14:50:32 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在Heroku上部署Django应用程序,该应用程序已成功部署,但当我想在提供的http链接上查看该应用程序时,出现以下错误gunicorn在我的requirements.txt文件中

2020-02-21T16:22:09.021935+00:00 heroku[web.1]: State changed from crashed to starting
2020-02-21T16:22:18.635625+00:00 heroku[web.1]: Starting process with command `gunicorn brendan_project.wsgi -- log file-`
2020-02-21T16:22:20.734759+00:00 heroku[web.1]: Process exited with status 127
2020-02-21T16:22:20.679520+00:00 app[web.1]: bash: gunicorn: command not found

这是我的requirements.txt文件:

asgiref==3.2.3
astroid==2.3.3
certifi==2019.11.28
chardet==3.0.4
dj-database-url==0.5.0
Django==3.0.2
django-crispy-forms==1.8.1
django-fontawesome==1.0
django-heroku==0.3.1
django-mailjet==0.3.1
django-sendgrid==1.0.1
django-smtp-ssl==1.0
gunicorn==20.0.4
idna==2.8
isort==4.3.21
lazy-object-proxy==1.4.3
mailjet-rest==1.3.3
mccabe==0.6.1
psycopg2==2.8.4
pylint==2.4.4
pytz==2019.3
PyYAML==5.3
requests==2.22.0
six==1.14.0
sqlparse==0.3.0
typed-ast==1.4.1
urllib3==1.25.7
whitenoise==5.0.1

我还有PipfilePipfile.lock文件


Tags: 文件djangotxt应用程序httpheroku部署with
1条回答
网友
1楼 · 发布于 2024-06-16 14:50:32

I also have Pipfile and Pipfile.lock files

这就是你的问题:你正在使用两种不同的工具,它们在一定程度上做着相同的事情

如果您有PipfilePipfile.lock,Heroku将使用Pipenv安装依赖项,并且requirements.txt将被忽略

在缺少PipfilePipfile.lock的情况下,Heroku使用piprequirements.txt安装依赖项

选择一个工具,并在任何地方使用它。如果选择Pipenv,请确保所有依赖项都反映在PipfilePipfile.lock中(例如,通过运行pipenv install -r requirements.txt),删除requirements.txt,然后重新部署。如果您想使用pip,请去掉PipfilePipfile.lock

相关问题 更多 >