I\'m a newbie been going through the django-nonrel tutorials and have set up django-nonrel inside of Google App Engine.
I am now trying to create a superuser using:<
Solved this. For anyone else having the same problem, in order to get admin to work:
1) Ensure that django.contrib.auth is installed_apps section in your settings.py
2) Stop runserver, then createsuperuser using manage.py createsuperuser. AFTER you've created the superuser, start runserver again.