My understanding was that IDLE comes built in with Python, which is installed with Ubuntu. I can't find IDLE in Applications. I can't find it to install in Ubuntu Software. Where is it? Not interested in workarounds. Want to know why it isn't there. Ubuntu 18.04
Asked
Active
Viewed 1.2k times
2 Answers
4
Did you try installing it from the command line directly, as this other almost identical question/answer pair instruct you on how to do?
You can install IDLE for Python 3 with
sudo apt install idle
... or with ...
sudo apt install idle3
There is no Python2 version of IDLE in Ubuntu 18.04, however.
Thomas Ward
- 80,112
-
Thanks @ThomasWard I did try sudo apt-get install idle but I think it resulted in a 'broken' install. In Show Applications two icons for IDLE were created but when I clicked on them nothing happened. – Stephen Brown Apr 29 '18 at 22:55
-
@StephenBrown what happens when you run
idle3in the terminal directly? Any runtime error output should show there if not in the GUI runtime. – Thomas Ward Apr 30 '18 at 00:41 -
Nothing happens now - I went back and reinstalled 18.04 from scratch (I had other issues). I wrongly expected IDLE to be part of a default install because Python is included. – Stephen Brown Apr 30 '18 at 19:57
-
There is something very ugly - broken here. I did sudo apt install idle. Now I get two 'icons' in Show Applications, one icon is ugly (it does not scale like all the other icons) Underneath it says... IDLE (using Pyt... If I right click, I get the Ubuntu Software window with No Applications Found in the middle. If I double click it opens Python 3.6.5 Shell. The other 'icon' is a blank space with IDLE3 underneath, if I right click, I get the Ubuntu Software window with widl-nan, IdleRPG & Power Management in a list. Double click opens Python 3.6.5 Shell same as above. Horrid! – Stephen Brown Apr 30 '18 at 20:50
-
1
Ubuntu doesn't bundle IDLE. It's not installed by default in Ubuntu, but it is installed in other linux distributions. It's an optional part of Python.
As other stated it out, you can quickly install it with
sudo apt install idle
It is only available for Python 3.
YoArgentino
- 347
- 3
- 12
idleandidle3are part of the Python source package.idlerequires Python 3, and so doesidle3– Thomas Ward Apr 30 '18 at 00:42sudo apt install idle-python3.6. – Sun Bear Aug 22 '19 at 17:23