Python 3的安装不正确

时间:2014-07-17 17:55:43

标签: python python-3.4

当我试图找到我的python3安装的位置时,这就是我得到的

08:48:07 >> which python3
/Library/Frameworks/Python.framework/Versions/3.4/bin//python3

如何将我的python安装移动到/ usr / local / bin / python3

此外,如果我尝试使用brew重新安装python 3,这就是我得到的

08:50:37 >> brew install python3
Warning: python3-3.4.1 already installed, it's just not linked

我基本上想将我的python安装移动到它的自然位置。

1 个答案:

答案 0 :(得分:0)

sudo ln -s /Library/Frameworks/Python.framework/Versions/3.4/bin/python3 /usr/local/bin/python3

应该这样做。