up vote 19 down vote favorite
6
share [g+] share [fb]

So I've got plain python downloaded, so I can run .py files from the command line. Now I want to step it up, have a debugger, be able to call .net or other Windows things, etc...

What's my next step? What's a good Python environment for Windows?

link|improve this question

This is probably not the most appropriate place for this comment, but I just have to say: It is kind of entertaining to see mjv going after the taxonomist badge. :D – John Y Apr 13 '10 at 23:47
feedback

closed as not constructive by Abizern, Kerrek SB, Bill the Lizard Aug 30 '11 at 14:13

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

15 Answers

up vote 6 down vote accepted

You may do well with IronPython, which gives you Python for the .NET environment. It probably integrates with the Visual Studio debugger and everything. (I don't use Windows for dev these days, so I haven't tried it.)

link|improve this answer
feedback

ActivePython and Komodo IDE seems to be a popular combination. Personally I use Cygwin and Komodo Edit, but then I don't do much interactive debugging on my Python scripts.

link|improve this answer
1  
+1 for Komodo IDE, if only for the debugging support. It's expensive though if you can't get your work to buy it for you. I can't recommend the free Komodo Edit though - too was much taken out. – Scott Griffiths Jul 21 '09 at 15:41
feedback

Try Eclipse with the "pydev" plugin PyDev

Eclipse

link|improve this answer
feedback

PyScripter. In my opinion one of the best windows only Python IDE

link|improve this answer
First, I wasn't impressed by it but once you get the hang of it, it's awesome. Give's you exactely what you need and nothing more. – Oliver Weiler Nov 7 '10 at 16:00
feedback

Install ipython instead of the default interpreter shell. Will save some time in various tasks.

link|improve this answer
What about Python 3? – Selinap Jul 19 '09 at 16:46
feedback

By environment, I take it you mean IDE. I've tried a few IDEs and editors, pretty much in the order I'd rate them:

  • Eclipse with PyDev. Nicely layed out GUI with syntax parsing to show errors, debugger and unit testing facilities. Easy to browse and edit large projects.
  • Eric - Written in PyQt. Nice environment
  • IDLE - I used to use this a lot. It has useful fns to look up functions in Python libs etc. It seemed like it wasn't being actively developed though.
  • Komodo. Nice editor, seems quite focussed on web development.
  • SPE. Lots of useful functionality although sporadic development. Works well with Blender.
  • Boa Constructor - IDE written in Python using wxPython. Good for generating wxPython GUIs quickly but has a major downside in that it parses the Python code to reload your project, and this breaks between wxPython versions.
  • PythonWin Editor - Comes as part of the Python win32 extensions, or with ActiveState ActivePython install. Has simple debugger. Useful for quick editing.
  • DrPython - Pretty basic, but functional editor.
  • SciTE - Simple text editor from which you can launch scripts and see the output. No debugger. Useful for quick editing.

More are listed here: http://wiki.python.org/moin/PythonEditors. I've settled on Eclipse because it works on Win, OSX and Linux (and I use all three) and because it scales well for larger projects.

You might also try PythonNET. I think this may have been superceeded by IronPython though.

If you want to run Python commands in a graphical environment you might try PyShell and PyCrust

link|improve this answer
feedback

I like Pythonwin, part of Python for windows extensions. It has an interesting autocomplete facility.

link|improve this answer
feedback

Given the nuances of your question, this probably isn't the answer that the OP wants to hear, but just in case anyone else with different sensibilities is reading this: I recommend using Vim or Emacs, coupled with other tools like ctags - yes, even for Windows development.

I have an anecdote to support this:

At work I do IronPython development, developing a .NET product on Windows only. We let developers choose their own IDEs, so like the stereotype of herded cats, everyone chose a different one. This was fine.

We also pair program. We change pairs every day. (call us crazy, iet works really well for us) Doing this means we are all exposed to a large number of different IDEs, and get to use them, hands-on, with an expert user of that IDE sitting by our side, 8 hours a day, every day.

This means we have all become quite proficient and knowledgeable about many different IDEs. After a while, some of us saw the good aspects of other IDEs that we didn't appreciate before. People started switching, using on their own Desktop an IDE that they had grown to appreciate through using it while pairing with somebody else.

You can tell what I'm going to say: After a year or so, almost everyone in the office now uses Vim or Emacs. (Exceptions: One guy uses Wing. One guy has steadfastly stuck with TextPad throughout.)

My interpretation of this is that Vim or Emacs are palpably better than integrated IDEs - but you do have to figure them out, and one way of doing that is to work side by side with someone who knows them. This is an example of pair programming spreading knowledge.

Oh and if you use vi with python, the pyflakes.vim plugin is fabulous.

Best regards.

link|improve this answer
feedback

The Visual Studio extensibility SDK also comes with a compilable IronPython integration package.

link|improve this answer
feedback

I spent a year doing Python development and was thoroughly underwhelmed by all the popular IDEs. However, I stubled onto Wing IDE by accident and as it happens, it is pretty good! The development is active and it has a mailing list that the developers very actively participate in.

The IDE is nice and very responsive. The text editor could use a few improvements (I am maybe spoiled by Visual Studio) but the feature set is quite nice. It also offers the best code completion support for Python I have ever seen. Oh, and I especially liked the remote debugger capabilities! The system I was working on was far too complex (or rather, too unmanagable) to run on developer machines, so before Wing all debugging was done by the print-statements-everywhere method.

It is the only Pthon IDE I recommend. I used the professional version, by the way.

I have not tried IronPython, though.

link|improve this answer
feedback

Wing IDE for the win. I was recommended it by some of our Visual Studio developers and it hasn't done me wrong. The code completion is pretty useful if you're new to Python.

Here's a great review of some of the popular IDEs:
http://stackoverflow.com/questions/17489/best-environment-for-python-on-windows

I tried out both trial versions of Komodo and Wing. I ended up with Wing because of its stronger code completion and cheaper price tag.

link|improve this answer
That links to this post. Maybe you wanted this one? stackoverflow.com/questions/60784/… – jcoon May 4 '09 at 17:00
I will also say that the new Wing IDE 4 is really the best there is for Python, hands down. – Musaab Dec 23 '11 at 9:15
feedback

Boa Constructor is a lightweight IDE made in Python (open source and freeware). It's oriented as a RAD tool, with a GUI designer based in wxPython.

It may not be the best environment for Python (I suppose either Eclipse+Pydev and IronPython have far more features), but it does the work without much bloating.

link|improve this answer
feedback

Go for eric ide if you want eclipse's cross-platforminess without all the weight of a full enterprise level ide..

link|improve this answer
feedback

You can use Netbeans and Python plugin with these features :

  • Code completion
    Code completion is available for :
    • Modules available for imports
    • Imported symbols
    • Local variables
    • Other known classes and functions
    • Keywords
  • Smart Indent, Outdent, and Pair matching
  • Editor Hints
  • Code Folding
  • Folded code
  • Semantic highlighting
  • Instant Rename
  • Mark Occurrences
  • Refactoring
  • Debugger
  • Platform Manager
  • Code Coverage
  • ...

To get the latest development builds of the Python IDE, see the How to install page.

link|improve this answer
feedback

Try Python Tools for Visual Studio. Supports CPython and IronPython.

link|improve this answer
feedback

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