Win7下安装Python3.6后,安装Pylint 出现 UnicodeDecodeError 错误:
发现为字符编码问题,修改文件:Python36\Lib\site-packages\pip\compat\__init__.py
76:return s.decode(‘utf_8‘)
为
try:
return s.decode(‘utf_8‘)
except UnicodeDecodeError:
return s.decode(‘gbk‘)
后可以正常安装
时间: 2024-10-10 02:03:19