I've been looking thoroughly before asking this question but couldn't find the answer on Stack Overflow. ModuleNotFoundError: No module named 'firstappdjango' has a similar error but does not solve my problem.
I've launched default app without problems and got Django screen etc. I am following a tutorial now and I started simple app with some HTML response. I get error called ModuleNotFoundError: No module named 'adamprojectdjango' when I want to run server.
What I've checked/some info
my app is called
adamprojectapp installed in
settings.pyINSTALLED_APPS = [ 'adamproject' 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', ]directories look as below
/home/none/eclipse-workspace/test5 ├── adamproject │ └── migrations └── test5 └── __pycache__app config file:
from django.apps import AppConfig class MysiteConfig(AppConfig): name = 'adamproject'