6

I am trying to set up a Python development environment. I have Python 2.7.3 running on Linux Mint 14. I downloaded IDLE and installed it. It clean installs and Python runs just fine.

So how do I invoke IDLE? There isn't any IDLE in my path: which idle returns nothing. man idle returns nothing pertaining to an editor. Nothing in /usr/lib or /usr/local/lib. Calling idle() inside the Python interpreter doesn't work. Invoking python brings up a shell, not IDLE. No menu entry for IDLE in Linux. No import library named IDLE that Python can find. Three O'Reilly books consulted and not a word about invoking IDLE in Linux. YouTube videos of Python favor Windows, not Linux. Web searches have so far been unsuccessful.

6
  • 1
    Welcome to SO! Please keep questions here limited to one topic (IDLE or ERIC). Also, keep in mind that not everyone here is a gentleman. You also don't mention which Linux distribution you are using Commented Dec 31, 2012 at 5:35
  • Ned, Single question noted. Perhaps you could suggest an appropriate salutation. Line 2: Mint 14. Thanks, Pete Commented Dec 31, 2012 at 5:42
  • After getting acclimated here, you'll notice that a salutation is neither needed nor preferred. Commented Dec 31, 2012 at 5:50
  • 1
    A text editor, an interpreter, and thou. ;) Commented Dec 31, 2012 at 7:33
  • How did you installed it? Commented Jun 25, 2016 at 18:10

1 Answer 1

14

I'm not familiar with Mint myself, but since it claims to be Debian-based, try installing the idle package:

sudo apt-get install idle

That should pull in all the appropriate packages for the installed version of Python. Then you should just be able to start IDLE with:

idle

in a terminal window.

Sign up to request clarification or add additional context in comments.

2 Comments

and idle3 for python3
@fzzylogic: Not always. It depends.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.