我最近在Mac上安装了anaconda2。默认情况下,将Conda配置为在打开新的终端会话时激活基本环境。
我想访问Conda命令(即,我想将Conda的路径添加到我的$ PATH中,初始化时Conda会这样做,所以就可以了)。
但是我通常不使用python编程,并且我不希望Conda默认激活环境。
首次conda init
从提示执行时,Conda将以下内容添加到我的.bash_profile
:
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/Users/geoff/anaconda2/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/Users/geoff/anaconda2/etc/profile.d/conda.sh" ]; then
. "/Users/geoff/anaconda2/etc/profile.d/conda.sh"
else
export PATH="/Users/geoff/anaconda2/bin:$PATH"
fi
# fi
unset __conda_setup
# <<< conda initialize <<<
如果我注释掉整个块,则无法激活任何Conda环境。
我试图注释掉整个区块,除了
export PATH="/Users/geoff/anaconda2/bin:$PATH"
但是,当我开始一个新的会话并尝试激活环境时,我收到了以下错误消息:
CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.
这个问题(以及其他类似的问题)很有帮助,但最终并不能回答我的问题,更适合Linux用户。
为了澄清起见,我并没有要求(base)
从我$PS1
要求Conda打开终端会话时不激活基础功能中删除。
source activate
?又名“老式的方法”