我的macbook上安装了anaconda发行版到我的本地主目录/Users/simon/anaconda
当我打开iterm并输入python
时,我看到了python的默认OSX安装。我在这里看到了这个帖子并实现了提到的修复:Mac using default Python despite Anaconda install
我的.bash_profile
目前看起来像这样:
export PATH="$HOME/anaconda/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:$PATH"
发生了一些奇怪的事情:
python
时,尽管改变了我的.bash_profile
source /Users/simon/.bash_profile
这实际上解决了问题。现在使用python
调出anaconda的python .bash_profile
保持不变。当我尝试以上所有使用终端时,一切正常。上面描述的问题似乎是特定于iterm2,我不知道为什么
如何让我的系统使用anacondas python而不是OSX版本?