mac版 命令行执行adb命令报错“zsh: command not found: adb”
原因分析:
字面意思是相关命令没有没有找到,其实就是bash shell 以及zsh shell 是两种读取系统环境变量(使用adb的前提是你肯定已经在bash的 .bash_profile 已经配置相关android tool的环境变量了,从而才能使用adb命令)
然而在使用zsh shell的时候,你并没有把相关的环境变量的配置设置到 .zshrc 中(功能上类似bash 的.bash_profile)
解决办法:
1.命令行输入 open .zshrc 回车
2.打开的文件中找到# User configuration部分,紧贴其后添加source ~/.bash_profile
3.点击文件的完成,命令行再输入source .zshrc 回车
网友评论