环境变量Mac OS Sierra位置

时间:2017-03-29 04:29:15

标签: bash macos sh .bash-profile

我试图在我的mac中设置全局环境变量,以便可以从任何地方看到它们。我已经尝试在/profile/.bash_profile中设置它们,但是当我从blender运行我的脚本时,再调用echo $MY_LIB_PATH和echo $MY_PRO_PATH只有其中一个{ {1}}存在,我不确定原因,看起来还有另一个位置设置了$My_PRO_PATH,我需要设置$My_PRO_PATH。有什么建议吗?

这是我的/ etc / profile:

$My_LIB_PATH

这是我的bash_profile:

# System-wide .profile for sh(1)

if [ -x /usr/libexec/path_helper ]; then
    eval `/usr/libexec/path_helper -s`
fi

if [ "${BASH-no}" != "no" ]; then
    [ -r /etc/bashrc ] && . /etc/bashrc
fi

export MY_LIB_PATH=/usr/local/mypro/mylib/
export MY_PRO_PATH=/usr/local/mypro/

0 个答案:

没有答案