I\'m running a virtualenv to try to learn Django, but for whatever reason after installing Django and when I try to access the default Django start page, I get the following
easy solution
just remove
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
from
MIDDLEWARE_CLASSES = ( ... ... )
in your project's settings.py
then, it should work!