确定Android SDK的安装位置,如笔者的就在:
/Library/Android/sdk
编辑.bash_profile文件::
cd ~ vi .bash_profile
在文件中加入下面两行,将路径加入环境变量:
export PATH=${PATH}:~/Library/Android/sdk/platform-tools; export PATH=${PATH}:~/Library/Android/sdk/tools;
保存后运行下面命令:
source ~/.bash_profile
然后就可以运行adb命令了。
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END