我正在使用 Ubuntu 18.04.2 LTS 并安装了 Python 3.6.7。
我使用以下命令安装了 idle3:
sudo apt-get install idle3
成功安装了 ide。
但是,当我尝试使用调用它时idle3
,出现以下错误:
Command 'idle3' not found, did you mean:
command 'idle' from deb idle
Try: sudo apt install <deb name>
如果我sudo apt-get install idle3
再次运行,我会收到以下消息:
Reading package lists... Done
Building dependency tree
Reading state information... Done
idle3 is already the newest version (3.6.7-1~18.04).
0 upgraded, 0 newly installed, 0 to remove and 10 not upgraded.
该命令which idle3
没有产生任何结果。我做错了什么,如何让可能安装在我系统上的 idle3 运行。
答案1
Ubuntu 18.04 中的默认 Python 是 Python 3.6.7。在终端中输入命令idle
将启动 IDLE(使用 Python 3.6.7)。您也可以通过单击 Dash 中的图标来启动 idle 和 idle3。