> 2) Why this module did not install
Because a module with that name doesn't exists.
> 3) How to fix it.
Check your INSTALLED_APPS settings. It should look something like this:
INSTALLED_APPS = (
'django.contrib.admin', <--- notice the coma
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'polls'
)
If you forget the comma Python will join the two literal strings.
('django.contrib.admin'
'django.contrib.auth',)
Is the same for Python as:
('django.contrib.admindjango.contrib.auth',)
And that's not a valid application. At least that's my best guess
about your problem.
--
Łukasz Rekucki