打开终端, 输入 open -e .bash_profile ,回车
-> $open -e .bash_profile
这时会弹出一个.bash_profile文件,在文件底部加上android adb的路径(默认为~/Library/Android/sdk/platform-tools),具体添加方法如下
export PATH=${PATH}:~/Library/Android/sdk/platform-tools
然后保存,关闭该文件。
最后不要忘记,在终端输入source .bash_profile, 否则配置是不会生效的
->$source .bash_profile