Hello, can someone help me figure out what I must fix in order for my website to work?
I have tried going through the debugging page and my static pathing is correct
here is my error code:
2017-12-19 22:48:47,561: Error running WSGI application
2017-12-19 22:48:47,561: ModuleNotFoundError: No module named 'Skeletonv3'
2017-12-19 22:48:47,562: File "/var/www/gassymule_pythonanywhere_com_wsgi.py", line 12, in <module>
2017-12-19 22:48:47,562: application = StaticFilesHandler(get_wsgi_application())
2017-12-19 22:48:47,562:
2017-12-19 22:48:47,562: File "/home/Gassymule/Skeletonv3.1/myvenv/lib/python3.6/site-packages/django/core/wsgi.py", line 13, in get_wsgi_application
2017-12-19 22:48:47,562: django.setup(set_prefix=False)
2017-12-19 22:48:47,563:
2017-12-19 22:48:47,563: File "/home/Gassymule/Skeletonv3.1/myvenv/lib/python3.6/site-packages/django/__init__.py", line 22, in setup
2017-12-19 22:48:47,563: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING)
2017-12-19 22:48:47,563:
2017-12-19 22:48:47,563: File "/home/Gassymule/Skeletonv3.1/myvenv/lib/python3.6/site-packages/django/conf/__init__.py", line 56, in __getattr__
2017-12-19 22:48:47,563: self._setup(name)
2017-12-19 22:48:47,563:
2017-12-19 22:48:47,563: File "/home/Gassymule/Skeletonv3.1/myvenv/lib/python3.6/site-packages/django/conf/__init__.py", line 41, in _setup
2017-12-19 22:48:47,564: self._wrapped = Settings(settings_module)
2017-12-19 22:48:47,564:
2017-12-19 22:48:47,564: File "/home/Gassymule/Skeletonv3.1/myvenv/lib/python3.6/site-packages/django/conf/__init__.py", line 110, in __init__
2017-12-19 22:48:47,564: mod = importlib.import_module(self.SETTINGS_MODULE)
2017-12-19 22:48:47,564: ***************************************************
2017-12-19 22:48:47,564: If you're seeing an import error and don't know why,
2017-12-19 22:48:47,564: we have a dedicated help page to help you debug:
2017-12-19 22:48:47,564: https://help.pythonanywhere.com/pages/DebuggingImportError/
2017-12-19 22:48:47,564: ***************************************************
Here is my wsgi file:
import os
import sys
path = os.path.expanduser('~/skeletonv3')
if path not in sys.path:
sys.path.append(path)
os.environ['DJANGO_SETTINGS_MODULE'] = 'skeletonv3.settings'
from django.core.wsgi import get_wsgi_application
from django.contrib.staticfiles.handlers import StaticFilesHandler
application = StaticFilesHandler(get_wsgi_application())
My settings.py file is located at:
/home/Gassymule/Skeletonv3.1/skeletonv3/skeletonv3/settings.py
and my wsgi.py file is located at
/var/www/gassymule_pythonanywhere_com_wsgi.py
Can anyone help me with this? I cannot find the solution on the internet.