How do I create a superuser account in Django 1.9.6

前端 未结 7 2072
广开言路
广开言路 2021-02-05 02:18

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

7条回答
  •  谎友^
    谎友^ (楼主)
    2021-02-05 02:58

    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
    

提交回复
热议问题