Skip to content Skip to sidebar Skip to footer

Django Error - Importerror: No Module Named Apps

I'm trying to create a first django project called mysite. The structure of my project is: mysite/ manage.py mysite/ __init__.py settings.py urls.py

Solution 1:

The error is because it is looking for an apps module inside of PollsConfig, you can just include polls in your installed apps

'polls.apps.PollsConfig',

should be

'polls',

Post a Comment for "Django Error - Importerror: No Module Named Apps"