我想使用Anaconda python,而不是MacOS上默认安装的python。当我使用:
$ which python
/usr/bin/python
但是,我的.bash_profile
和.bashrc
有以下行:
export PATH=~/anaconda3/bin:$PATH
如何将 Anaconda python 设置为默认值?
我的 Anaconda3 安装已经在我的.bash_profile
中设置了它(由注释指示(。尝试使用绝对路径(并将{username}
替换为您的实际用户名(并添加引号,如下所示:
export PATH="/Users/{username}/anaconda3/bin:$PATH"