1.打开配置文件bash_profile
open -e .bash_profile
2.如果没有创建过.bash_profile,则先需要创建
touch .bash_profile
3.输入你要配置的环境变量
#Setting PATH for Android ADB Tools
export ANDROID_HOME=/Users/xxx/android
export PATH={PATH}:{ANDROID_HOME}/platform-tools
export PATH={PATH}:{ANDROID_HOME}/android/tools
export PATH={PATH}:{ANDROID_HOME}/build-tools/30.0.3
ANDROID_HOME根据自己电脑的sdk目录进行修改
4.保存,配置生效
source .bash_profile
5.验证
输入adb 进行验证
当然也可以直接使用vim 来编辑.bash_profile文件
vim ~/.bash_profile
i:进入编辑模式. Esc:wq 保存文件 esc:q 退出
export ANDROID_HOME=/Users/xxx/android