在OSX上,每次打开新的终端时,我都需要重新执行以下操作:
export PATH=~/miniconda3/bin:$PATH
否则它将会是
zsh: command not found: conda
发布于 2017-05-02 06:58:21
添加
export PATH=~/miniconda3/bin:$PATH
到~/.zshrc
下面是关于启动文件的很好的解释:http://superuser.com/questions/187639/zsh-not-hitting-profile
https://stackoverflow.com/questions/43731760
复制