一、Mac电脑ADB环境配置
1、步骤
1、启动终端Terminal
2、进入当前用户的home目录
cd ~
3、创建.bash_profile
touch .bash_profile
4、编辑.bash_profile文件
open -e .bash_profile
添加地址
export PATH=${PATH}:/Users/用户名/Library/Android/sdk/platform-tools
export PATH=${PATH}:/Users/用户名/Library/Android/sdk/tools
5、保存文件,关闭.bash_profile
6、更新刚配置的环境变量
source .bash_profile
7、验证配置是否成功
adb --version
注意:若提示.bash_profile does not exist则关闭Terminal,并重新开启尝试上述步骤
2、问题
每次重启系统或者重新打开终端Terminal后需要手动更新 .bash_profile文件才会使其生效;
原因:系统启动后没有加载.bash_profile文件。
解决方案:将.base_profile文件追加到到 .zshrc文件 末尾 (如果你的shell是zsh,如果不是,推荐使用zsh)
1、进入当前用户的home目录
cd ~
2、如果有.zshrc文件则打开,若没有则创建
open -e .zshrc
touch .zshrc
3、打开 .zshrc 文件,在末尾添加 :
source /Users/用户名/.bash_profile
或
source ~/.bash_profile
4、保存并关闭.zshrc文件,刷新.zshrc文件
source .zshrc
文章评论