Mac修改临时环境变量 export OBJC_HELP=1
2020-01-09 本文已影响0人
你飞跃俊杰
一、用户级环境变量设置:bash_profile
1.打开操作终端,执行 ls ~/.bash_profile
2.如果不存在,执行命令: touch ~/.bash_profile
3.执行命令:vim ~/.bash_profile ,输入以下内容
if [ -f /etc/bash_profile ]; then
./etc/bash_profile
fi
export PATH=$PATH:你要配置的环境变量路径
4.vim退出并保存后,执行 source ~/.bash_profile
二、系统级环境变量设置:profile
1、打开命令端,执行: vim /etc/profile
2、在profile文件末尾添加: export PATH=$PATH:你要配置的环境变量路径