4👍
✅
It looks like gunicorn isn’t installed properly on your system.
Run pip install -r requirements.txt and then manually run the gunicorn command to check it works.
4👍
I came to this question with the same problem finding gunicorn when running ‘foreman start’, but eventually dug up at other sources that I was not recreating the virtualenv in a new bash session. I had originally followed the instructions from Heroku, but days later with new sessions, needed to remember to run
source venv/bin/activate
- [Django]-Custom metrics from celery workers into prometheus
- [Django]-Configuration problems in azure website for django app
- [Django]-How install a extension in postgresql before creating the models in django?
1👍
I had the same issue:
sudo apt-get install libpq-dev python-dev
and then reinstalling the heroku-toolbelt solved it!
- [Django]-Django template: How can I regroup a list of dictionaries by a nested property of each dictionary?
- [Django]-Force re-collectstatic with django static?
- [Django]-Getting the right dependency in Heroku
- [Django]-Django Elastic Beanstalk App – Cannot Set Secure Listener Port to 443: LoadBalancerHTTPSPort
Source:stackexchange.com