【解决】YOLOv6.1安装requirements.txt报错UnicodeDecodeError: ‘gbk‘ codec can‘t decode byte 0x84

【解决】YOLOv6.1安装requirements.txt报错UnicodeDecodeError: ‘gbk‘ codec can‘t decode byte 0x84,第1张

案例描述:

使用YOLOV5时,报错解决UnicodeDecodeError: ‘gbk‘ codec can‘t decode byte 0x84 in position 285: illegal multibyte sequence

解决方案:

在C:\ProgramData\Anaconda3\lib\distutils\dist.py"文件搜索read

将

parser.read(filename)

修改为

parser.read(filename, 'utf-8')
然后输入
pip install -r  ./requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple/
成功解决!!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/794786.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-06
下一篇 2022-05-06

发表评论

登录后才能评论

评论列表(0条)

保存