我使用 anaconda3 进行 python3 安装。现在它是我的默认 python:
$ which python
/home/xy/anaconda3/bin/python
$ which python3
/home/xy/anaconda3/bin/python
但我需要 python2 作为我的默认 python。
$ which python2
/usr/bin/python2
我试图编辑我的 .bashrc 如下所示,
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/home/xy/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/nu
ll)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/home/xy/anaconda3/etc/profile.d/conda.sh" ]; then
. "/home/xy/anaconda3/etc/profile.d/conda.sh"
else
export PATH="/home/xy/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
通过将 export PATH... 的行更改为
export PATH="$PATH:/home/xy/anaconda3/bin"
它没有改变任何东西。
我应该如何将 python2 设置为默认值?