文章摘要
GPT 4
首先是错误如下:
1
2
3
[root@VM-4-3-centos ~]# yum install -y yum-utils
Failed to set locale, defaulting to C.UTF-8 # 这里是出现了 UTF-8字符集的问题
Last metadata expiration check: 0:02:34 ago on Fri Apr 7 17:29:02 2023.
解决方式:

执行一下命令:

1
2
3
echo "export LC_ALL=en_US.UTF-8"  >>  /etc/profile
echo "export LC_CTYPE=en_US.UTF-8" >> /etc/profile
source /etc/profile

在安装软件,不会有报错提示,问题得到了解决~