1. 程式人生 > >oh-my-zsh ,“zsh: command not found: adb”

oh-my-zsh ,“zsh: command not found: adb”

1,關於zsh ,請移步介紹:終極 Shell——ZSH 
官網 :oh-my-zsh

2,安裝完zsh,在使用相關shell命令,出現了”zsh: command not found adb:adb”,”zsh: command not found: git” 等一系列error

字面意思是相關命令沒有沒有找到

其實就是bash shell 以及zsh shell 是兩種讀取系統環境變數 
(使用adb的前提是你肯定已經在bash的 .bash_profile 已經配置相關android tool的環境變量了,從而才能使用adb命令)

然而在使用zsh shell的時候,你並沒有把相關的環境變數的配置設定到 .zshrc 中(功能上類似bash 的.bash_profile)

3,解決辦法

既然是.zshrc 沒有配置相關環境變數設定,把 bash 中.bash_profile 全部環境變數加入就好

open .zshrc
1
然後找到# User configuration部分,新增

source ~/.bash_profile
1


執行

source .zshrc
1
在執行adb 命令


--------------------- 
作者:yian_ 
來源:CSDN 
原文:https://blog.csdn.net/yianemail/article/details/51693583 
版權宣告:本文為博主原創文章,轉載請附上博文連結!