gpt4 book ai didi

python - 运行服务器的 Unicodedecodeerror

转载 作者:太空狗 更新时间:2023-10-29 22:13:19 26 4
gpt4 key购买 nike

在设置完django 所需的所有内容后,我尝试了runserver 命令,但我发现了一个错误:

UnicodeDecodeError: 'utf-8' codec can't decode byte 0xcf in position 8: invalid continuation byte

来自:

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:\python34\lib\site-packages\django\utils\autoreload.py", line 93, in wrapper fn(*args, **kwargs)
File "C:\python34\lib\site-packages\django\core\management\commands\runserver.py", line 127, in inner_run ipv6=self.use_ipv6, threading=threading)
File "C:\python34\lib\site-packages\django\core\servers\basehttp.py", line 167, in run httpd = httpd_cls(server_address, WSGIRequestHandler, ipv6=ipv6)
File "C:\python34\lib\site-packages\django\core\servers\basehttp.py", line 109, in __init__ super(WSGIServer, self).__init__(*args, **kwargs)
File "C:\python34\lib\socketserver.py", line 430, in __init__ self.server_bind()
File "C:\python34\lib\site-packages\django\core\servers\basehttp.py", line 113, in server_bind super(WSGIServer, self).server_bind()
File "C:\python34\lib\wsgiref\simple_server.py", line 50, in server_bind HTTPServer.server_bind(self)
File "C:\python34\lib\http\server.py", line 137, in server_bind
self.server_name = socket.getfqdn(host)
File "C:\python34\lib\socket.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

我使用的是 Windows 7 x64、python 3.4 和 django 1.6.2。这个错误是什么意思?

最佳答案

这听起来像 this Python issue .如果您的计算机名称包含非 ASCII 字符,这将失败。你可以:

  1. 使用明确的主机和端口发出 runserver 命令:python manage.py runserver 127.0.0.1:8000
  2. 将您的计算机名称更改为仅包含 ASCII 字符的字符串。

关于python - 运行服务器的 Unicodedecodeerror,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23109244/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com