lookuperror unknown encoding cp720 in django when running on diffrent computer
I have a django site that when I run it on my computer,every thing is good,but when I run it on another computer,I can't login with my username and password and that sounds like开发者_如何学编程 the user is not in my database while the user is in user auth table in sqlite. then I go to shell to create another user,but it doesn't let me create a new user and have this error: lookuperror unknown encoding cp720 what should I do about it?
Solution:
chcp 1250
You should find out why the other machine doesn't have the full set of codecs installed, and rectify that.
精彩评论