当我python
写终端得到一个错误
bash: /usr/local/bin/python2.7: No such file or directory
但如果我在终端中使用python2
或者python3
它工作正常
如何解决这个问题?请帮帮我
答案1
看起来您没有 python 的符号链接。
- 如果您想在输入 python 时使用 python3,请运行以下命令:
sudo ln -s /usr/bin/python3 /usr/bin/python
- 如果您想在输入 python 时使用 python2,请运行以下命令:
sudo ln -s /usr/bin/python2 /usr/bin/python
如果您遇到以下问题
ln: failed to create symbolic link '/usr/bin/python': File exists
,请尝试删除 python 的符号链接sudo rm /usr/bin/python
并尝试上述解决方案。
我希望它有帮助。