I am reading a book (\"Learning Django Web Development\" by Sanjeev Jaiswal and Ratan Kumar) on Django, but the book is based on an earlier version of Django (prior to version 1
you create superuser with this :
python manage.py createsuperuser
this will create superuser for you and you can create many superuser . but notice before you can make super user you must run these command :
python manage.py makemigrations
and them :
python manage.py migrate