11

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

我想我在安装 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上。

谢谢!

4

1 回答 1

25

您的文件 /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.

希望有帮助!

于 2013-03-06T00:45:02.713 回答