我通过 Anaconda 的 64 位图形安装程序 Python 3.8 安装了 Python,但是当我检查它显示 2.7 的版本时,有什么建议吗?
当我尝试卸载/删除 anaconda 时,以下命令也不起作用:
rm -rf ~/anaconda3
conda install anaconda-clean ーー> (Error msg : zsh: command not found: conda)
anaconda-clean
anaconda-clean --yes
我尝试使用命令行安装程序,但它也不起作用。
有什么方法可以安全地删除 Anaconda 和 Anaconda Navigator?
答案 0 :(得分:0)
尝试输入 python3
而不是仅输入 python
。
答案 1 :(得分:0)
确保您的 shell (bash / zsh) 正在初始化 anaconda。
如果您使用的是 zsh,请运行 cat ~/.zshrc
并检查如下所示的脚本:
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/Users/<username>/anaconda3/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/Users/<username>/anaconda3/etc/profile.d/conda.sh" ]; then
. "/Users/<username>/anaconda3/etc/profile.d/conda.sh"
else
export PATH="/Users/<username>/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<
如果您使用 bash,请运行 cat ~/.bash_profile
,但脚本应该相同。
如果它不存在,您可能在安装过程中遗漏了一些东西。我建议您只需下载 shell 脚本 (cli) 安装程序并再次运行。
最终,如果 conda 初始化脚本已成功执行,您应该在终端中看到之前的 (base)。