Reputation: 45
im new to pythonanywhere
im getting this error
ModuleNotFoundError: No module named 'Wasp'
My WSGI Settings
path = '/home/waspdeco/waspdeco/Wasp'
if path not in sys.path:
sys.path.insert(0, path)
os.environ['DJANGO_SETTINGS_MODULE'] = 'Wasp.settings'
and my files directory for settings.py
/home/waspdeco/waspdeco/Wasp
i dont know what i am doing wrong any help?
Upvotes: 0
Views: 192
Reputation: 676
Looks like your path
should be /home/waspdeco/waspdeco
Take a look at the Django section of https://help.pythonanywhere.com/pages/DebuggingImportError/
Upvotes: 0