ModuleNotFoundError: No module named ‘polls.apps.PollsConfigdjango’; ‘polls.apps’ is not a package .
this error is showing
It looks that you missed a comma after 'polls.apps.PollsConfig'
, it should be:
INSTALLED_APPS = [
'polls.apps.PollsConfig',
'django',
....