当前位置: 代码迷 >> 综合 >> bypy出现Can‘t detect the system encoding, assume it‘s ‘UTF-8‘
  详细解决方案

bypy出现Can‘t detect the system encoding, assume it‘s ‘UTF-8‘

热度:94   发布时间:2023-12-23 14:53:36.0

问题:
在这里插入图片描述

首先安装locale apt-get install locale
输入locale可以看到系统当前编码:
在这里插入图片描述
输入locale -a可以查看系统可用编码(不在list里的编码改了也没用):
在这里插入图片描述

vim ~/.bashrc里添加

  LANG="C.UTF-8"LANGUAGE="C:zh"LC_ALL="C.UTF-8"

再启用source ~/.bashrc
在这里插入图片描述

然后bypy就正常了

  相关解决方案