无法在django中创建超级用户

时间:2014-03-27 02:03:29

标签: python django

每当我尝试创建数据库时,都会发生这种情况

C:\Users\Admin8085\Desktop\src>python manage.py syncdb
Creating tables ...
Creating table django_admin_log
Creating table auth_permission
Creating table auth_group_permissions
Creating table auth_group
Creating table auth_user_groups
Creating table auth_user_user_permissions
Creating table auth_user
Creating table django_content_type
Creating table django_session

You just installed Django's auth system, which means you don't have any superuse
rs defined.
Would you like to create one now? (yes/no): yes
Please enter either "yes" or "no": yes
Please enter either "yes" or "no": yes
Please enter either "yes" or "no": yes
Please enter either "yes" or "no": 'yes'
Please enter either "yes" or "no": yes
Please enter either "yes" or "no":

1 个答案:

答案 0 :(得分:0)

是的,我打赌它与字符集有关。如果你跑这个,你会得到什么?

python -c "import sys; print(sys.getdefaultencoding())"

如果您的系统编码与Python正在使用的编码不同,那么"是"在python中可能不等于"是"在你的终端。 :-O

相关问题