python的更新没有显示在终端上

时间:2017-10-13 10:09:45

标签: python

我使用Python 2.7.5中的“brew”将Python升级到Python 2.7.14。我正在使用macOS Mavericks 10.9。我将其添加到.profile

export PATH="/usr/local/bin:$PATH".

我不想搞乱系统python(2.7.5)。如何使用升级后的Python?

2 个答案:

答案 0 :(得分:2)

好吧,您必须使用以下导出更新 .profile 。用以下内容替换导出。

export PATH="/usr/local/opt/python/libexec/bin:$PATH"

答案 1 :(得分:1)

将导出添加到.profile并保存后,请务必先从终端source ~/.profile尝试加载python

此外,我还使用macOS,我的所有PATH扩展名实际上都在名为.bash_profile的文件中,而不是.profile(在我的情况下为空)。

This很好地描述了.bashrc,.profile和.bash_profile之间的区别。