Jump to content

IDE suggestions for Python

needmorewood
Go to solution Solved by Abhinav,

I am assuming you are using linux for python development.

I've used Ninja IDE for most of my python projects. It is cross platform and very easy to use. Don't believe me? Take a look : http://ninja-ide.org/

Screenshot:

CeEjeMal.jpg

 

There is another editor not an IDE which I have have fallen in love with: Kate http://kate-editor.org/

The pic will explain everything:

z3nVnQ1l.jpg

 

Those are the two Editors/IDEs I like.

If you do need an extensive list try: https://wiki.python.org/moin/PythonEditors

Abhinav

i just want something simple to start with.
ive done python before so not something so dumbed down but nothing to the level of eclipse where i got to setup and deal with alot.

so just post your favourite IDE's for Python xD

Link to comment
Share on other sites

Link to post
Share on other sites

I am assuming you are using linux for python development.

I've used Ninja IDE for most of my python projects. It is cross platform and very easy to use. Don't believe me? Take a look : http://ninja-ide.org/

Screenshot:

CeEjeMal.jpg

 

There is another editor not an IDE which I have have fallen in love with: Kate http://kate-editor.org/

The pic will explain everything:

z3nVnQ1l.jpg

 

Those are the two Editors/IDEs I like.

If you do need an extensive list try: https://wiki.python.org/moin/PythonEditors

Abhinav

Link to comment
Share on other sites

Link to post
Share on other sites

I am assuming you are using linux for python development.

I've used Ninja IDE for most of my python projects. It is cross platform and very easy to use. Don't believe me? Take a look : http://ninja-ide.org/

Screenshot:

CeEjeMal.jpg

 

There is another editor not an IDE which I have have fallen in love with: Kate http://kate-editor.org/

The pic will explain everything:

z3nVnQ1l.jpg

 

Those are the two Editors/IDEs I like.

If you do need an extensive list try: https://wiki.python.org/moin/PythonEditors

Abhinav

:o for ninja is that a dark theme or windows based theme?

looks awesoime will try it out

Link to comment
Share on other sites

Link to post
Share on other sites

:o for ninja is that a dark theme or windows based theme?

looks awesoime will try it out

It seems to use the dark theme irrespective of which theme Windows is using. :)

Link to comment
Share on other sites

Link to post
Share on other sites

It seems to use the dark theme irrespective of which theme Windows is using. :)

:( im hurt now but its ok will try it anyways

Link to comment
Share on other sites

Link to post
Share on other sites

:( im hurt now but its ok will try it anyways

Its seems I was wrong.... :(

You can change the theme in preference in the edit menu. :)

Link to comment
Share on other sites

Link to post
Share on other sites

Its seems I was wrong.... :(

You can change the theme in preference in the edit menu. :)

actually its by default dark!!! xD

thanks alot man ill probably choose this

oh and btw i am using windows :P shouldve probably mentioned that a while ago

Link to comment
Share on other sites

Link to post
Share on other sites

Not a python developer and not fan of IDEs , but Sublime Text http://www.sublimetext.com is great editor and it's cross-platform - not free but evaluation version just pops-up window time to time on save - was using it quite for some time this way. For Windows my favorite before Sublime was Notepat++ http://notepad-plus-plus.org and it's totally free. On Linux I have tried free http://komodoide.com/komodo-edit and it was ok, there's full IDE too, but that's quite pricey

Link to comment
Share on other sites

Link to post
Share on other sites

Not a python developer and not fan of IDEs , but Sublime Text http://www.sublimetext.com is great editor and it's cross-platform - not free but evaluation version just pops-up window time to time on save - was using it quite for some time this way. For Windows my favorite before Sublime was Notepat++ http://notepad-plus-plus.org and it's totally free. On Linux I have tried free http://komodoide.com/komodo-edit and it was ok, there's full IDE too, but that's quite pricey

Oh yeah! Notepad++ is also a good option on Windows. :P totally forgot about that..

Thanks for reminding :)

Link to comment
Share on other sites

Link to post
Share on other sites

actually its by default dark!!! xD

thanks alot man ill probably choose this

oh and btw i am using windows :P shouldve probably mentioned that a while ago

You're welcome :)

Link to comment
Share on other sites

Link to post
Share on other sites

Not a python developer and not fan of IDEs , but Sublime Text http://www.sublimetext.com is great editor and it's cross-platform - not free but evaluation version just pops-up window time to time on save - was using it quite for some time this way. For Windows my favorite before Sublime was Notepat++ http://notepad-plus-plus.org and it's totally free. On Linux I have tried free http://komodoide.com/komodo-edit and it was ok, there's full IDE too, but that's quite pricey

yea i need an IDE/ prefer one????

not sure how u would develop complex things without an IDE but i guess its possible. just not my thing 

Link to comment
Share on other sites

Link to post
Share on other sites

yea i need an IDE/ prefer one????

not sure how u would develop complex things without an IDE but i guess its possible. just not my thing 

OK, then let's look at this the other way. What are the features you need from IDE?

Link to comment
Share on other sites

Link to post
Share on other sites

OK, then let's look at this the other way. What are the features you need from IDE?

oh i just like it for the UI is all

plus i have another ide to easily make GUI's for my apps

Link to comment
Share on other sites

Link to post
Share on other sites

VIM, pretty much the best open markup editor out there and there are many tutorials out there explaining how to turn it into a IDE

Link to comment
Share on other sites

Link to post
Share on other sites

In most cases, programming in python does not really require a full ide. Because of how high level python is, execution time can be quite terrible compared to some of the other languages. as a result, in most cases devs use python very lightly, maybe a decent text editor with plugins to some of the features of ides should be enough to get by. 

 

Personally I use sublime text 3 with some plugins to make my life easier:

 

Some of my essential plugins:

origami (splits the editing window take advantage of all your screen real estate)

anaconda (by far one of the best python linters out there) 

pythonimproved syntax theme (the default python syntax is based off python 2, some of the paradigms break the syntax highlighting when your programming in python3)

soda dark theme

if you really want to run code in your editor to give it that "ide" feel, you can try sublimerepl. Personally though a terminal window (or putty) was more than enough for me. 

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×