Possible Duplicate:
What IDE to use for Python?
Other than Notepad++, what text editor do you use to program in Windows?
Is there a good, free Python IDE for Windows? I really need some good debugging abilities.
Other than Notepad++, what text editor do you use to program in Windows? Is there a good, free Python IDE for Windows? I really need some good debugging abilities. |
||||
This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. This question and its answers are frozen and cannot be changed. More info: FAQ.
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.
|
|
|||||||||||||
|
|
Try Python Tools for Visual Studio. Supports CPython and IronPython. |
|||||||||
|
|
Python for Windows ships with IDLE as part of the distribution. There is also and for further choices, the Python wiki's comprehensive list of IDEs with features listed |
||||
|
|
|
PyCharm from JetBrains is not free in general, but has free early access program. And it is surely worth looking at. |
||||
|
|
|
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. |
||||
|
|
|
Active State also offers Komodo Edit. I love it. Debugging? What specific needs do you have that you can't solve with the None of these things require elaborate IDE support. |
|||||||||||||||||||||
|
|
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. |
||||
|
|
|
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. |
|||||
|
|
PyScripter is a pretty solid windows IDE that isn't overbearing |
||||
|
|
|
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! Please note though that this is an entirely separate implementation of python, and so none of your usual extensions will work by default, unless they've been ported. On the up side, you do get access to the whole .NET library. |
|||||||||||||
|
|
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. |
||||
|
|
|
On Windows, I use Notepad++ with the appropriate settings. |
|||||
|
|
I had been looking for an IDE for a While I am switching between Linux and Windows. eventually I found http://ninja-ide.org/ It is nice and easy, as has some cool features for beginners * hightlighs errors * enforces pep8 |
||||
|
|
|
SPE - Stani's Python Editor, is pretty awesome. See http://pythonide.blogspot.com/. |
||||
|
|
|
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. |
||||
|
|
|
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 Editra has a new plugin called PyStudio. It adds a Python debugger, Pylint and various other features. (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. |
||||
|
|
|
I use PyScripter, and find it pretty awesome. |
||||
|
|
|
gvim built with your python version support and with this plugins: |
||||
|
|
|
I have used "The Eric Python IDE" once and was quite pleased with it. |
||||
|
|
|
BOa Constructor www.boa-constructor.sourceforge.net really nice! drag and drop stuff! |
||||
|
|
|
DrPtyhon is also very nice, and has many plug-ins. http://drpython.sourceforge.net/ |
||||
|
|
|
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. |
||||
|
|
|
http://groups.google.com.tr/group/python_opengl this software is my sample visual python ide.its demo version. |
||||
|
|
|
What IDE to use for Python? has a comprehensive ranking of Python IDEs. Although it covers all OSes, Windows-compatible ones are clearly indicated. |
||||
|
|
|
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. |
||||
|
|
|
Take a look at PFaide it's in alfa yet but worth to check http://pfaide.com/ |
||||
|
|
|
there also is a Python shell plugin for jEdit which is a programmers editor written in Java running on Mac OS X, OS/2, Unix, VMS and Windows |
||||
|
|
|
I'm using Programmer's Notepad 2 a very slick and small editor for all kinds of purposes. |
||||
|
|
cat | python -. – LarsH Sep 21 '10 at 3:14