美文网首页
mac 上 adb not found

mac 上 adb not found

作者: MacXin | 来源:发表于2018-04-25 16:46 被阅读0次

    参考:链接

    第一种报错(使用的自带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,添加相应的环境变量即可

    相关文章

      网友评论

          本文标题:mac 上 adb not found

          本文链接:https://www.haomeiwen.com/subject/ysyylftx.html