[Django]-Deploying django app with heroku — gunicorn not installing

0👍

I think the problem is this line in your Procfile when you run

gunicorn poem_maker.wsgi:application

try web: gunicorn poem_maker.wsgi instead.

👤t_io

0👍

This error indicates that you have missing gunicorn, install it

pip install gunicorn

Leave a comment