我的计算机上已经安装了 python3 idle,我该如何安装 python2.7 idle?

我的计算机上已经安装了 python3 idle,我该如何安装 python2.7 idle?

我需要运行使用 2.7 编程的文件,如果我进入终端并给出命令:

sudo apt-get install idle

它不起作用。

Reading package lists... Done
Building dependency tree       
Reading state information... Done
idle is already the newest version (3.6.7-1~18.04).
0 upgraded, 0 newly installed, 0 to remove and 196 not upgraded

这就是所显示出来的内容。

答案1

要安装使用 Python 2.7 的 IDLE 版本,请安装该idle-python2.7软件包。安装该版本的 IDLE 后,运行该版本的命令也是idle-python2.7。(尽管您也可以从桌面环境中的菜单中选择它。)

安装该idle-python2.7包的一种方法是运行以下命令:

sudo apt update
sudo apt install idle-python2.7

然后,运行它:

idle-python2.7

上面显示的方法适用于安装任何特定版本的 IDLE,尽管在任何给定版本中,Ubuntu 的存储库中往往只提供少数几个版本。您可以通过列出名称以 开头的软件包来查看所有软件包(以及一些其他软件包)idle

apt list 'idle*'

您可能还会发现搜索以下内容很有帮助https://packages.ubuntu.com为了idle

到目前为止,在大多数版本的 Ubuntu 中,该idle软件包都为 Python 2 提供了 IDLE,而该idle3软件包为 Python 3 提供了 IDLE,就像该python软件包为 Python 2 提供了 IDLE 一样——现在仍然如此。但在最新版本中,包括 18.04(似乎是您正在运行的版本),该idle软件包为 Python 3 安装 IDLE。

尽管python包和命令仍然是 Python 2,但idle最新版本中的包和命令是 Python 3 的 IDLE。

相关内容