Xpaza
Xpaza

Reputation: 1

Invoking Python's Idle on Ubuntu v15 terminal

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

Answers (1)

Roshan Bagdiya
Roshan Bagdiya

Reputation: 2178

Install idle for Python 3:

sudo apt-get install idle3

to launch idle3: it can be open from :

  1. Ubuntu software menu
  2. type idle3 on the command line

for Python2 use:

sudo apt-get install idle

Upvotes: 1

Related Questions