Ubuntu – How to install Python IDLE

idle-pythonpython

Which IDLE package I should install from Software Center in Ubuntu assuming I want to program in Python 3?

Best Answer

You can install IDLE for Python 3 by installing the idle3 package in the official Ubuntu repositories:

sudo apt-get install idle3

For Python 2, replace idle3 with idle.

Related Question