前言:
之前一直装系统用的是中文,装了个英文玩玩,结果写python的时候悲剧了,不能够输入中文,无法显示,所以就想着能否给改成中文,以下是步骤
[root@python python]# locale -a|grep -i zh_cn.utf8 //查看当前的语言环境
[root@python python]# yum grouplist | grep -i chinese //查看仓库是否有中文包
[root@python python]# yum groupinstall Chinese-support //安装中文语言包
[root@python python]# echo $LANG //查看当前语言环境
[root@python python]# LANG=zh_CN.utf8 //临时设置中文环境
[root@python python]# echo $LANG //查看当前语言环境
[root@python python]# vim /etc/sysconfig/i18n //永久设置中文环境
LANG="zh_CN.utf8"
此步骤过后,已经设置成为了中文环境