Unable to create superuser in django due to not working in TTY

前端 未结 7 1762
南方客
南方客 2021-01-12 05:40

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

7条回答
  •  旧时难觅i
    2021-01-12 06:20

    First run

    $ django-admin startproject mysite in cmd prompt,then apply migration by

    cd mysite mysite:

    python manage.py makemigrations then

    python manage.py migrate after that

    python manage.py createsuperuser

提交回复
热议问题