Reputation: 1
I have Python3 preinstalled on Ubuntu v15. But when I try to open the Idle at the terminal by typing Idle
at the command promt, I get "NameError: name 'Idle' is not define
Upvotes: 0
Views: 47
Reputation: 2178
Install idle for Python 3:
sudo apt-get install idle3
to launch idle3: it can be open from :
for Python2 use:
sudo apt-get install idle
Upvotes: 1