I go through first django tutorial from djangoproject.com and at the very beginning of part 2, which is creating superuser when I run \"python manage.py createsuperuse
\"python manage.py createsuperuse
You can create a superuser using django shell (python manage.py shell)
python manage.py shell
from django.contrib.auth.models import User User.objects.create_superuser(username='YourUsername', password='hunter2', email='your@email.com')