Anaconda env正在使用另一个env的网站包

时间:2019-10-01 09:16:20

标签: python anaconda

我在Mac 10.14.16上安装了Anaconda 1.9.7。安装新的环境时,我遇到一个奇怪的行为。 which python显示正确的python路径,但是站点包已链接到另一个环境,因此当我使用pip install时,它将尝试将包放入另一个环境的站点包中。

我不知道为什么会这样。不知道我是否不小心更改了bash_profile。

此代码看起来不错:

# added by Anaconda3 2019.07 installer
# >>> conda init >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$(CONDA_REPORT_ERRORS=false '/anaconda3/bin/conda' shell.bash hook 2> /dev/null)"
if [ $? -eq 0 ]; then
    \eval "$__conda_setup"
else
    if [ -f "/anaconda3/etc/profile.d/conda.sh" ]; then
        . "/anaconda3/etc/profile.d/conda.sh"
        CONDA_CHANGEPS1=false conda activate base
    else
        \export PATH="/anaconda3/bin:$PATH"
    fi
fi
unset __conda_setup
# <<< conda init <<<

您知道如何解决此问题吗?

0 个答案:

没有答案