参考:链接
第一种报错(使用的自带mac命令行)
bash: adb: command not found
1、vim ~/.bash_profile ,如果.bash_profile不存在,先touch ~/.bash_profile
2、将如下内容添加到.bash_profile文件中
esc => 输入wq! => enter
3、source ~/.bash_profile 使其生效
第二种报错(使用的是zsh或oh-my-zsh)
zsh: command not found adb:adb
1、vim ~/.zshrc ,如果.zshrc不存在,先touch ~/.zshrc
2、将如下内容添加到.zshrc文件中
esc => 输入wq! => enter
3、source ~/.zshrc 使其生效
ps:.zshrc是zsh的配置文件,相当于bash的.bash_profile,添加相应的环境变量即可
网友评论