mac下配置环境变量

mac下配置环境变量

在终端窗口中输入:

cd ~
touch ./bash_profile
open ./bash_profile

执行open命令后,会打开bash_profile,在bash_profile文件中输入要配置的环境变量,如下示例(这是一个配置ANDROID_HOME的例子):

export ANDROID_HOME=/Applications/01Babybus/devtool_eclipse/android_eclipse_sdk;
export ANDROID_HOME_TOOLS=${ANDROID_HOME}/tools;
export ANDROID_HOME_PLATFORM_TOOLS=${ANDROID_HOME}/platform-tools;
export PATH=${PATH}:${ANDROID_HOME}:${ANDROID_HOME_TOOLS}:${ANDROID_HOME_PLATFORM_TOOLS};

关闭文件,在终端窗口中输入:

source ./bash_profile

该命令使得配置的环境变量立即生效。


_本站文章为【宝宝巴士 SuperDo.preacher】原创,转载务必在明显处注明:(作者官方网站: 宝宝巴士 ) _
转载自【宝宝巴士SuperDo团队】原文链接: http://www.jianshu.com/p/b354f042681b

你可能感兴趣的:(mac下配置环境变量)