Zsh: Conda/Pip installs command not found

后端 未结 21 1866
忘掉有多难
忘掉有多难 2020-12-02 05:27

So I installed Anaconda and everything is working. After I installed it I decided to switch to oh-my-zsh. I am now getting:

zsh         


        
21条回答
  •  -上瘾入骨i
    2020-12-02 06:12

    You need to fix the spacing and quotes:

    export PATH ="/Users/Dz/anaconda/bin:$PATH"
    

    Instead use

    export PATH="/Users/Dz/anaconda/bin":$PATH
    

提交回复
热议问题