Mac下设置Android adb环境变量
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mac下设置Android adb环境变量相关的知识,希望对你有一定的参考价值。
1. 找到adb本地路径
adb放在platform-tools
我的路径是(/Users/android-sdk-macosx/platform-tools)
2. 打开终端,进入到sdk文件夹中
touch .bash_profile
open -e .bash_profile
新建一个.bash_profile文件,然后打开后编辑。如果是第一次打开,应该会是空白的文档,如果已经编辑过了,在原来内容后面加;添加的内容。
3. 在.bash_profile文件中添加adb的路径
export PATH=${PATH}:/Users/android-sdk-macosx/platform-tools:/Users/android-sdk-macosx/tools
保存后,关掉该文件。
4.终端输入命令 source .bash_profile
5.终端输入命令 adb点回车,如果未显示command not
found,环境变量设置完成。
以上是关于Mac下设置Android adb环境变量的主要内容,如果未能解决你的问题,请参考以下文章