我最近安装了 Python3.7,之后任务栏中出现一个红色图标(停止标志),并显示消息“检查更新时出现问题”。
据我所知,缺少一些 Python 链接,现在我的计算机上各个版本的 Python 都乱成一团。
当我执行时python -V
,我会收到python3.7
输出,而当我输入时python3 -V
,我也会收到python3.7
。
输入后sudo update-alternatives --config python
我得到以下内容:
There are 3 choices for the alternative python (providing /usr/bin/python).
Selection Path Priority Status
------------------------------------------------------------
* 0 /usr/bin/python2.7 2 auto mode
1 /usr/bin/python2.7 2 manual mode
2 /usr/bin/python3.5 1 manual mode
3 /usr/bin/python3.6 2 manual mode
输入后sudo update-alternatives --config python3
我得到以下内容:
There is only one alternative in link group python3 (providing /usr/bin/python3): /usr/bin/python3.6
Nothing to configure.
我只想要默认的 Python 版本 Python2.7,以及默认的 Python3.7。其他版本的 Python,如果我可以删除它们并且不需要它们就更好了。
我该怎么做?谢谢。