django create superuser failed

django create superuser failed

得到以上界面后自然希望能够登录进行操作,此时需要创建用户,但在执行python manage.py  createsuperuser 时报以下错误:

return Database.Cursor.execute(self, query, params)
django.db.utils.OperationalError: no such table: auth_user

从报错提示可以看出是不存在对应的数据表,实际上是由于创建的模型没有迁移到数据库,此时只需要执行python manage.py makemigrations

django create superuser failed

接着执行python manage.py migrate

django create superuser failed

最后再执行python manage.py  createsuperuser 就可以了。

上一篇:通过在linux中使用命令行获取灰度图片的“文本”边界框的坐标


下一篇:remaining connection slots are reserved for non-replication superuser connections