Computer Science Canada Python IDE |
Author: | Mr. T [ Thu Oct 27, 2005 11:55 pm ] |
Post subject: | Python IDE |
I'm looking for GUI-ified IDE for python. I am thinking along the lines of JEdit. Any other recommendable options? |
Author: | Martin [ Fri Oct 28, 2005 12:13 am ] |
Post subject: | |
vim. |
Author: | Naveg [ Fri Oct 28, 2005 6:29 am ] |
Post subject: | |
scite is your best bet: syntax highlighting, auto-indentation, code popups, compile and interpreter buttons |
Author: | goomba [ Fri Oct 28, 2005 5:26 pm ] |
Post subject: | |
JEdit or Jext are good... just keep a terminal window open to run your programs, not that difficult compared to pressing a 'run' button. ![]() |
Author: | rizzix [ Fri Oct 28, 2005 6:23 pm ] |
Post subject: | |
or u can use the JConsole (or whatever it's called) plugin ![]() There's also an eclipse plugin for python.. |
Author: | Mr. T [ Fri Oct 28, 2005 7:15 pm ] |
Post subject: | Alex's Opinion |
Martin wrote: vim.
I would like to do as little preliminary work as possible before actually coding. Vim is out of the question. Sorry Martin. ![]() |
Author: | wtd [ Fri Oct 28, 2005 7:24 pm ] |
Post subject: | |
Pick your text editor of choice and a terminal window. That is the best Python development environment. |
Author: | Hikaru79 [ Fri Oct 28, 2005 7:31 pm ] |
Post subject: | |
Best free Python IDE: http://www.stani.be/python/spe/ Best non-free Python IDE: http://www.activestate.com/Products/Komodo/ I must say, objectively speaking, I find Komodo more comfortable than SPE. But that's just me. They're both very good. Of course, as wtd says, there's a 99% chance that you don't need an IDE and a simple text editor will suffice. |
Author: | Naveg [ Fri Oct 28, 2005 7:43 pm ] |
Post subject: | Re: Alex's Opinion |
Pwned wrote: Martin wrote: vim.
I would like to do as little preliminary work as possible before actually coding. Vim is out of the question. Sorry Martin. ![]() Don't count vim out. Take a look at Cream, its a configuration for vim that has auto indentation and syntax highlighting built in, and lets you type right after opening the window ![]() http://cream.sourceforge.net/ |
Author: | wtd [ Fri Oct 28, 2005 7:51 pm ] |
Post subject: | |
The Python interactive interpreter is one of the best documentation tools around. Get used to accessing doc-strings. |
Author: | Mr. T [ Fri Oct 28, 2005 8:21 pm ] |
Post subject: | Alex's Opinion |
Hikaru79 wrote: Best free Python IDE: http://www.stani.be/python/spe/
I was using it for a bit and it crashed every 5 minutes. ![]() |