Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Is there a good, free Python IDE for Windows?
What IDE to use for Python?

Other than Notepad++, what text editor do you use to program in Windows?

I'm looking for something that includes many of the common modern-day tools, such as:

  • Code refactoring
  • Code navigation
  • Debugger
  • etc...
share|improve this question
4  
Wasn't this already answered in stackoverflow.com/questions/126753/…? – S.Lott Sep 25 '08 at 21:53
2  
I agree, this is a dupe. But I don't have the rep to do anything about it. :( – crystalattice Sep 26 '08 at 7:20

marked as duplicate by Robert Harvey Oct 5 '11 at 2:47

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

10 Answers

up vote 8 down vote accepted

Eclipse with the PyDev plugin.

http://pydev.sourceforge.net/

share|improve this answer

PyScripter. It's free!

share|improve this answer

Wingware Python IDE

Too bad it's not free!

share|improve this answer

This question, this question and this question all deal with this topic, or one like it.

share|improve this answer

Vim (or gVim, or MacVim).

Free, very powerful. You can write your own functions, macros, extensions, etc in minutes and expand it's functionality. There are tons of plugins and a strong, die-hard community.

share|improve this answer
although vim is not an IDE, i prefer vim also – Jeremy Cantrell Sep 28 '08 at 23:37
My point was that it's better than any IDE, and with enough carefully chosen plugins, it look like one. (since it can already easily function as one). – camflan Sep 30 '08 at 0:03
gVim ! :) yeah!.. the best editor i've ever use. And yes, with the properly plugins and knowledge on how to use it, it's much better than any IDE. – unkiwii Oct 1 '08 at 19:02
vim is not an IDE, and comparing it to one makes no sense. i agree that it's better than using an IDE for you and me, but obviously not for the poster. – Jeremy Cantrell Oct 2 '08 at 0:20

There is a comprehensive list at http://wiki.python.org/moin/IntegratedDevelopmentEnvironments (as well as http://wiki.python.org/moin/PythonEditors). It's safe to say that each one is preferred and recommended by at least one person, because it's a wiki ;-)

share|improve this answer

Though I've never used it, I've heard good things about Active State's Komodo. It is supported on Windows, Linux and OSX.

share|improve this answer

I am sure you are not looking for something for .NET, but it is worth putting here: IronPython Studio

share|improve this answer

I think Pyscripter or http://sourceforge.net/projects/drpython/files/ Dr. Python are both my favorites on Windows (I did not see it (Dr. Python) listed in the master IDE list but I believe its a worthy candidate.) Not learning Linux for Python at the moment.

share|improve this answer

Editra has a new plugin called PyStudio which I created with assistance from the editor's author. It adds a Python debugger, Pylint and various other features.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.