This question is similar to the following questions:
However, the solutions there did not work for me.
At runtime I always get the following error:
ImportError: no module named 'project'
My project directory is simple
project\
- project\
- __init__.py
- views.py
- modules.py
When I try to import from the init.py file
I use
from . import app
or
from project import app
I am getting the error I stated above.
I can't seem to figure it out. please help!!!