vote up 12 vote down star
5

Is there a good, free Python IDE for Windows? I really need some good debugging abilities.

flag

19 Answers

vote up 19 vote down

Try Eclipse with PyDev

I think it is the best one ;)

link|flag
I've used PyDev and liked it. I'm surprised we didn't get more emacs/vim in this thread. – Steve g Sep 24 '08 at 12:35
vote up 7 vote down

Python for Windows ships with IDLE as part of the distribution. There is also

WingWare

Eric IDE

and for further choices, the Python wiki's comprehensive list of IDEs with features listed

link|flag
vote up 5 vote down

Active State also offers Komodo Edit. I love it.

Debugging? What specific needs do you have that you can't solve with the print statement? Are you using the assert statement? Are you using unit tests?

None of these things require elaborate IDE support.

link|flag
5  
Are you serious? I'm very new to Python and am more of a C++ specialist, but you can't seriously be suggesting print and assertions being able to completely replace a proper debugger? – korona Oct 21 '08 at 17:20
1  
Yes, completely serious. When I was a C++ programmer, I did resort to the debugger (mostly to get a stack traceback from a core file.) In Python, you don't have any of the veiled mysteries that are so common in C or C++. – S.Lott Oct 21 '08 at 17:52
1  
Using the word "resort" suggests that we have a radically different view on debuggers :) As I use Visual C++ in my C++ development, the debugger is just a natural part of the IDE and the development process. I hardly notice it ;) But you are correct that higher level languages make it less needed. – korona Oct 22 '08 at 12:34
@korona: In Python, you can work interactively from the command line to see what's going on. In scripts, the print and assert statements are all you'll ever need. There's nothing more you'd gain from using a debugger. – S.Lott Oct 22 '08 at 13:31
After a long time working with Python, whenever I go back to c programming, I find myself forgetting that the option for a debugger even exists - to the amusement of my friends. Personally, I'm pretty sure that a debugger would be great for Python as well, but since it is less necessary, they tend not to be too developed (for the same reason, IDE's would probably be great for Python, but they are much less developed). – Edan Maor Sep 28 at 4:58
vote up 3 vote down

ActiveState Python comes with PythonWin which is reasonably good. I use this for most Python development that I do on Windows. However it does not have any GUI builders in it so you may need to look at what's available for your choice of GUI framework.

The debugger on PythonWin works fine, though and will let you set breakpoints, step through, show variables and all of the standard debugger facilities.

link|flag
2  
Also Komodo Edit. activestate.com/Products/komodo_ide/… – S.Lott Sep 24 '08 at 13:13
vote up 2 vote down

What about IronPython? It is integrated into Visual Studio / using a Visual Studio environment:

http://www.codeplex.com/Wiki/View.aspx?ProjectName=IronPython

And it is free!

link|flag
1  
But Visual Studio isn't free ;) – epochwolf Sep 24 '08 at 13:28
1  
Not true - codeplex.com/Wiki/… – Luke Sep 25 '08 at 9:37
Or rather, not true in this situation... obviously VS costs money as a standalone product! – Luke Sep 25 '08 at 9:38
vote up 2 vote down

Python itself already has some some good debugging abilities.

You may want to take a look at the pdb module. It's great to set trace points and go through the programm one step at a time. It's console based and has no GUI though.

link|flag
vote up 2 vote down

I have been using Eclipse with PyDev for a while now. Its pretty good but Eclipse is so bloated. I regularly see it using 300Mb of memory on Windows. It can hang and just be generally slow. YMMV.

Yesterday, I heard about iPython and am eager to check it out. It's not an IDE so much as a super charged shell for python that will allow you to use your favorite editor alongside it. There are some iPython related videos over on showmedo.com that may help you judge if it is going to meet your needs.

link|flag
vote up 1 vote down

http://mmm-experts.com/Products.aspx?ProductId=4

link|flag
This looks interesting. Thanks! – Joseph Sep 24 '08 at 14:58
+1 for PyScripter. – miracle2k Sep 24 '08 at 15:08
You can get the latest version on code.google.com/p/pyscripter – Victor Yan Jul 12 at 1:59
vote up 1 vote down

SPE - Stani's Python Editor, is pretty awesome. See http://pythonide.blogspot.com/.

link|flag
vote up 1 vote down

If you do some searching, you will notice a lot of Pythonistas don't use full blown IDE's for development. Have you looked at anything more lightweight?

check out SciTE: http://www.scintilla.org/SciTE.html
Also, check out Editra: http://editra.org/
(incidentally both are developed in python themselves)

I use SciTE for all Python development. It has an integrated console, syntax highlighting, auto-complete and all the basics you need for lightweight development.

link|flag
Eric ide mentioned above includes scintilla and adds extra features to make it more of a complete IDE. – jilles de wit Sep 25 '08 at 9:20
vote up 1 vote down

Netbeans has support for python development in their Python Early Access version.

If you've used Eclipse before, I'd recommend PyDev as mentioned in other answers as the debugger and other features work just like any other language in eclipse. If you're coming from a differnt IDE, Netbeans is worth a try as I think it's a bit easier to switch to from other IDE's like dev studio.

I switch between pydev and netbeans - they're both very good.

link|flag
vote up 0 vote down

I have used "The Eric Python IDE" once and was quite pleased with it.

link|flag
vote up 0 vote down

BOa Constructor www.boa-constructor.sourceforge.net really nice! drag and drop stuff!

link|flag
vote up 0 vote down

DrPtyhon is also very nice, and has many plug-ins. http://drpython.sourceforge.net/

link|flag
vote up 0 vote down

Sure there is... vim!

link|flag
vote up 0 vote down

On Windows, I use Notepad++ with the appropriate settings.

link|flag
vote up 0 vote down

Geany (http://www.geany.org/) is a fairly light text editor that does a lot of IDE-like stuff. I use it for my Python development when I'm not on an Emacs kick, and I think I'm more productive with it than anything else. It takes some work to get it all together on Windows, though.

link|flag
vote up 0 vote down

I will make a plug for my preference of Python development environments: SPE. SPE is an integrated development environment that provides code completion, integrated Python shell, calltips, and various helper tools like notes and todo lists.

It also includes wxGlade so you can make wxPython applications easily. Plus, it includes the python debugger WinPdb.

link|flag
vote up 0 vote down

http://groups.google.com.tr/group/python_opengl this software is my sample visual python ide.its demo version.

link|flag

Your Answer

Get an OpenID
or

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