Error Running WSGI Application , ModuleNotFoundError: No Module Named 'mysite'
I am trying to deploy my Django project through the project using pythonanywhere but I am getting a problem and am really stuck. Can anyone help me with that. The image attached to
Solution 1:
Your path needs to be /home/technewsandblog/blog/blog_project
.
Currently, your path of /home/technewsandblog/blog/blog_project/mysite
and settings module mysite.settings
means that it is expecting a settings.py file at /home/technewsandblog/blog/blog_project/mysite/mysite/settings.py
Also check out the PythonAnywhere help page on WSGI import errors. (in particular the Django section)
Post a Comment for "Error Running WSGI Application , ModuleNotFoundError: No Module Named 'mysite'"