方法1:编辑.zshrc
文件, 添加conda路径。
- 我是从pychram中发现conda的路径的。在
Preferences
-->Project Interpreter
--> 上面是现在使用的Interpreter, 点击旁边的三个点的按钮然后点击add
--> 选择Conda Environment
--> 在Exisiting environment 中会发现你anaconda的路径。我的在/opt/anaconda3
- 编辑
.zshrc
文件, 添加export PATH=/opt/anaconda3/bin:$PATH
-
source ~/.zshrc
之后 conda 命令就可以使用了 - 终端输入
cconda init zsh
方法2:直接复制bash中的配置到 .zshrc
中
- 在
.bash_profile
中复制conda相关的内容,粘贴到.zshrc
中,也就是下面的内容
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/opt/anaconda3/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/opt/anaconda3/etc/profile.d/conda.sh" ]; then
. "/opt/anaconda3/etc/profile.d/conda.sh"
else
export PATH="/opt/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<
方法3:
先切回bash,然后输入命令conda init zsh
然后切回zsh