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

前端 未结 7 1693
南方客
南方客 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条回答
  • 2021-01-12 06:39

    if you are in virtualenv, cd into your virtualenv and activate it. then try these steps:

    python manage.py syncdb --noinput
    python manage.py migrate
    python manage.py createsuperuser
    
    0 讨论(0)
提交回复
热议问题