Failed to set locale, defaulting to C.UTF-8
- CentOS 8中执行
命令
,出现报错:Failed to set locale, defaulting to C.UTF-8 - 报错原因:
- 1、没有安装相应的语言包。
- 2、没有设置正确的语言环境。
- 解决方法1:安装语言包
- 设置语言环境需使用命令 locale
locale -a 命令,
查看目前系统已安装的语言包- 安装中文语言包,命令
yum install glibc-langpack-zh
安装英文语言包,命令 dnf install glibc-langpack-en
或dnf install langpacks-en glibc-all-langpacks -y
- 解决方法2:设置正确的语言环境
echo "export LC_ALL=en_US.UTF-8" >> /etc/profile
source /etc/profile
或使用命令
locale -gen en_US.UTF-8
Failed loading plugin “osmsplugin”: No module named ‘librepo’
- CentOS 8中执行
命令
,出现报错:Failed loading plugin “osmsplugin”: No module named ‘librepo’ - 解决方法:
dnf install python3-librepo -y
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容