42

I am new to python and I am using simple gedit application on linux machine to write python code, however its very difficult to manage the indentations of my code. I am looking for any Python IDEs that provides some functionality and should not slow down my P4 machine.

Community
  • 1
  • 1
ScoRpion
  • 11,026
  • 23
  • 63
  • 87

4 Answers4

31

I recommend you take a look at the list of editors on Python's wiki, as well as these related questions:

Community
  • 1
  • 1
EdoDodo
  • 7,938
  • 3
  • 20
  • 30
  • Among the IDEs which the Python website has listed, PyCharm is a very good one, with very good features and tools such as support for Django, autocomplete, debugging and so on but it is not free ( you can use its community edition for free though, which does not have all the features). If you are looking for something free of cost, you can download MS-Code plus python-development plugin for it. – Kazem Mar 22 '19 at 02:47
4

U can use eclipse. but u need to download pydev addon for that.

Henry Henrinson
  • 4,929
  • 6
  • 35
  • 73
3

Python is dynamic language so the IDE can do only so much in terms of code intelligence and syntax checking but I personally recommend Komode IDE, it's pretty slick on OS/X and Windows. I've experienced high cpu use with Linux but not sure if it's caused by my VirtualBox environment.

You can also try Eclipse with PyDev plugin. It's heavier so performance might become a problem though.

Awais Qarni
  • 14,876
  • 22
  • 72
  • 134
Teemu Ikonen
  • 11,169
  • 4
  • 20
  • 35
2

Here's the answer to all your questions: http://wiki.python.org/moin/PythonEditors

Moyshe
  • 1,142
  • 1
  • 11
  • 19
  • This answers the question "What Python IDEs exist?", not the question "What is the best Python IDE?". – Ceph Mar 29 '19 at 13:05