Mac 系统的环境变量,加载顺序为:
/etc/profile /etc/paths ~/.bash_profile ~/.bash_login ~/.profile ~/.bashrc
- 启动 Terminal 终端工具
- 输⼊ cd ~/ 进⼊入当前⽤用户的 home ⽬目录
- 创建:touch .bash_profile
- 打开并编辑:open .bash_profile
- 在⽂文件中写⼊入以下内容:
android_home=/Users/xxx/Library/Android/sdk export PATH=$android_home/tools:$PATH
export PATH=$android_home/platform-tools:$PATH
注:android_home 请根据⾃自⼰己的 sdk 路路径配置。
- 执⾏生效:source .bash_profile
- 输入 adb 命令验证