如何修复请求中的“latin-1 编解码器无法对位置中的字符进行编码”

问题描述 投票:0回答:2

我在 python 3 中编码时遇到问题。 当我在我的电脑上测试时,我没有收到任何错误:

Python 3.7.3 (default, Jun 24 2019, 04:54:02) 
[GCC 9.1.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import requests
>>> print(requests.get('https://www.kinopoisk.ru').text)

everything good.

但是当我在我的 VPS 上运行此代码时出现以下错误:

Python 3.7.3 (default, Apr  3 2019, 19:16:38) 
[GCC 8.0.1 20180414 (experimental) [trunk revision 259383]] on linux
Type "help", "copyright", "credits" or "license" for more information.

>>> import requests
>>> print(requests.get('https://www.kinopoisk.ru').text) 

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
UnicodeEncodeError: 'latin-1' codec can't encode characters in position 393-401: ordinal not in range(256)

Python版本是相同的。我不知道发生了什么。

如何解决?

python python-3.x python-requests python-unicode
2个回答
4
投票

根据 pep-538,如果您的环境使用 C os POSIX 语言环境,Python 3.7 会自动将其强制转换为支持 UTF-8 的语言环境。

因此,您的 PC 似乎设置了

UTF-8
C
区域设置,而您的 VPS 使用
latin-1

尝试在两台计算机上的交互式 Python 会话中运行以下命令:

import sys
import locale

print(sys.getfilesystemencoding())
print(locale.getpreferredencoding())

如果您不想更改 VPS 上的区域设置,您可以在其环境中设置

PYTHONUTF8=1
,或者可以在 Python 中使用
-X utf-8
选项。


0
投票

您可以将 CHARLANG 选择放入您的 linux /root/home .profile

export LANG="en_US.utf8"
© www.soinside.com 2019 - 2024. All rights reserved.