Unicodedecodeerror with runserver(Unicodedecodeerror 与 runserver)
本文介绍了Unicodedecodeerror 与 runserver的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
After setting up all what django
requires, I tried the runserver
command and I caught an error:
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xcf in position 8: invalid continuation byte
From:
c:sue>python manage.py runserver
Validating models...
0 errors found
April 16, 2014 - 15:02:42
Django version 1.6.2, using settings 'sue.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.
Unhandled exception in thread started by <function check_errors.<locals>.wrapper at 0x0000000003890048>
Traceback (most recent call last):
File "C:python34libsite-packagesdjangoutilsautoreload.py", line 93, in wrapper fn(*args, **kwargs)
File "C:python34libsite-packagesdjangocoremanagementcommands
unserver.py", line 127, in inner_run ipv6=self.use_ipv6, threading=threading)
File "C:python34libsite-packagesdjangocoreserversasehttp.py", line 167, in run httpd = httpd_cls(server_address, WSGIRequestHandler, ipv6=ipv6)
File "C:python34libsite-packagesdjangocoreserversasehttp.py", line 109, in __init__ super(WSGIServer, self).__init__(*args, **kwargs)
File "C:python34libsocketserver.py", line 430, in __init__ self.server_bind()
File "C:python34libsite-packagesdjangocoreserversasehttp.py", line 113, in server_bind super(WSGIServer, self).server_bind()
File "C:python34libwsgirefsimple_server.py", line 50, in server_bind HTTPServer.server_bind(self)
File "C:python34libhttpserver.py", line 137, in server_bind
self.server_name = socket.getfqdn(host)
File "C:python34libsocket.py", line 460, in getfqdn
hostname, aliases, ipaddrs = gethostbyaddr(name)
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xcf in position 8: invalid continuation byte
I am using Windows 7 x64, python 3.4 and django 1.6.2. What does this error mean?
解决方案
This sounds like this Python issue. If your computer name has non-ASCII characters this will fail. You may:
- Issue the runserver command with explicit host and port:
python manage.py runserver 127.0.0.1:8000
- Change your computer name to a string that only contains ASCII characters.
这篇关于Unicodedecodeerror 与 runserver的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:Unicodedecodeerror 与 runserver
基础教程推荐
猜你喜欢
- 如何在Python中绘制多元函数? 2022-01-01
- Python 的 List 是如何实现的? 2022-01-01
- 使用 Google App Engine (Python) 将文件上传到 Google Cloud Storage 2022-01-01
- 使 Python 脚本在 Windows 上运行而不指定“.py";延期 2022-01-01
- 哪些 Python 包提供独立的事件系统? 2022-01-01
- 将 YAML 文件转换为 python dict 2022-01-01
- 症状类型错误:无法确定关系的真值 2022-01-01
- 合并具有多索引的两个数据帧 2022-01-01
- 如何在 Python 中检测文件是否为二进制(非文本)文 2022-01-01
- 使用Python匹配Stata加权xtil命令的确定方法? 2022-01-01