mac OS系统跟linux系统一样也是将用户的全局环境变量保存在.bash_profile配置文件中,只是mac OS默认没有此文件。
1、创建.bash_profile文件
vi ~/.bash_profile
2、添加环境变量
#!/bin/bash LANG=zh_CN.UTF-8
export LANG
3、编译
source .bash_profile
mac OS系统跟linux系统一样也是将用户的全局环境变量保存在.bash_profile配置文件中,只是mac OS默认没有此文件。
1、创建.bash_profile文件
vi ~/.bash_profile
2、添加环境变量
#!/bin/bash LANG=zh_CN.UTF-8
export LANG
3、编译
source .bash_profile