如何将 Python 3.5.2 更新至 3.6.2

如何将 Python 3.5.2 更新至 3.6.2

我安装了 python 3.5.2 和 3.6.7,但我只需要 python 3.6.2,我怎样才能删除其他版本并在机器上只获取 3.6.2

答案1

尝试这个

sudo apt purge python2.x
sudo apt purge python3.x

由于仍有许多软件包依赖于 Python2.x,因此在让 apt 继续之前,您应该仔细查看它想要删除的软件包。

之后您可以通过以下方式安装所需的版本

$ sudo apt update
$ sudo apt install python3.6.2

然后你可以检查

ls -l /usr/bin/python*

相关内容