Trying to deploy a local Django project in Python Anywhere, but getting the ImportError module: No module named "environ" when running "python manage.py migrate"
File "/home/Dude1983/surfapp/src/surfapp/settings/development.py",line 1, in <module> from .base import *
I checked Django versions as 1.9.5.
My wsgi.py looks like this:
import os import sys path = '/home/Dude1983/surfapp/'
I am using the Edge 2 starter template and my settings are here:
surfapp β βββ __init__.py β βββ __pycache__ β β βββ __init__.cpython-35.pyc β βββ logger.py β βββ settings β β βββ __init__.py β β βββ __pycache__ β β β βββ __init__.cpython-35.pyc β β β βββ base.cpython-35.pyc β β β βββ development.cpython-35.pyc β β βββ base.py β β βββ development.py β β βββ local.sample.env β β βββ production.py β βββ urls.py β βββ views.py β βββ wsgi.py
I followed the DjangoGirls tutorial here .
Can someone help me or give me any directions?
source share