I have an external python process that must start gunicorn for a Django application located in a subfolder. I have tried following and its not working.
- python subprocess with command "gunicorn -c web/api/conf/gunicorn_config.py web/api/api.wsgi"
- https://docs.gunicorn.org/en/stable/custom.html but I am getting import gunicorn.app.base ModuleNotFoundError: No module named 'gunicorn'
Would appreciate any help solving this.