Gunicorn/Django, ImportError: No module named application.wsgi
问题 I'm trying to deploy a Django app using Heroku, but I'm running into the following error: "ImportError: No module named myproject.wsgi". My project is configured as such: my-project │ Procfile │ requirements.txt │ runtime.txt │ README.md │ ├───myproject │ │ db.sqlite3 │ │ django │ │ django._file_ │ │ import │ │ manage.py | | │ ├───myproject | | | wsgi.py | | | settings.py | | | urls.py | | | _init_.py | | | | | ├───_pycache_ | | │ ├───venv ... My wgsi.py file is configured as such: import os