如何在/ usr / bin / python中重新安装目录

时间:2013-03-06 00:32:33

标签: python directory install bin

我已经研究了几个小时无济于事。

我认为在安装python 3时删除了/ usr / bin / python中的目录,因为我收到此错误:-bash: /usr/bin/python: No such file or directory.

我已经尝试了sudo ln -s /usr/bin/python2.7 /usr/bin/python,这给了我ln: /usr/bin/python: File exists

但是,它仍然不会在/ usr / bin / python中永久安装目录。如何永久恢复此目录?

我在Mac上。

谢谢!

1 个答案:

答案 0 :(得分:12)

您的文件/ usr / bin / python存在,因为您收到消息:

ln: /usr/bin/python: File exists

但我发现这是一个不存在的东西的损坏链接,因为你收到了消息:

-bash: /usr/bin/python: No such file or directory

要解决的问题是:

sudo rm /usr/bin/python    # because that's a corrupted file
sudo ln -s /usr/bin/python2.7 /usr/bin/python    # this line will work if your file /usr/bin/python2.7 is OK.

希望有所帮助!