up vote 4 down vote favorite
share [g+] share [fb]

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...
link|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
feedback

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

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ.

10 Answers

up vote 8 down vote accepted

Eclipse with the PyDev plugin.

http://pydev.sourceforge.net/

link|improve this answer
feedback

PyScripter. It's free!

link|improve this answer
feedback

Wingware Python IDE

Too bad it's not free!

link|improve this answer
feedback

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

link|improve this answer
feedback

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.

link|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
feedback

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 ;-)

link|improve this answer
feedback

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

link|improve this answer
feedback

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

link|improve this answer
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

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