Python 版本更新

Python 版本更新

我将戴尔计算机上的 Python 版本从 2.7.15 更新到了 3.6.5,但输入 python -VI 后发现 Python 仍为 2.7.15 版本

以下是代码行:

remus@remus-Inspiron-5559:~$ sudo apt install python3
Reading package lists... Done
Building dependency tree       
Reading state information... Done
python3 is already the newest version (3.6.5-3).
0 to upgrade, 0 to newly install, 0 to remove and 0 not to upgrade.
remus@remus-Inspiron-5559:~$ python -V
Python 2.7.15rc1
remus@remus-Inspiron-5559:~$ 

我做错什么了吗?

答案1

您将始终保留 Python v2(命令pythonpython-包)和 Python v3(python3命令和python3-*包)。您的系统上有许多为 V2 编写的东西,无法与 V3 一起使用,因此您无法摆脱 V2(但没有什么可以强迫您在自己的脚本中使用 V2)。

相关内容