Review: 7 Python IDEs go to the mat

Which Python IDE is right for you? Here’s how IDLE, Komodo, LiClipse, PyCharm, Python extension for Visual Studio Code, Python Tools for Visual Studio, and Spyder stack up in capabilities and ease of use.

wrestling wrestlers competition match fight
Tsutomu Takasu (CC BY 2.0)

Of all the metrics you could use to gauge the popularity and success of a language, one surefire indicator is the number of development environments available for it. Python’s rise in popularity over the last several years has brought with it a strong wave of IDE support, with tools aimed at both the general programmer and those who use Python for tasks like scientific work and analytical programming.

These seven IDEs with Python support cover the gamut of use cases. Some are built exclusively for Python, while others are multilanguage IDEs that support Python through an add-on or have been retrofitted with Python-specific extensions. Each benefits a slightly different audience of Python developer, although many strive to be useful as universal solutions.

A good number of the IDEs today are frameworks outfitted with plug-ins for specific languages and tasks, rather than apps written from the inside out to foster development in a given language. To that end, your choice of IDE may be determined by whether or not you have experience with another IDE from the same family.

Related video: Why Python makes programming easy

For those who don’t have such experience, PyCharm is one of the best places to start. It’s friendly to newcomers, but not hamstrung in its feature set. In fact, it sports some of the most useful features among all of the IDEs profiled here. Many of those features are available only in the for-pay version of the product, but there is plenty in the free version to help a fledgling developer get started.

LiClipse and the Python Tools for Visual Studio (PTVS) are good choices for developers already intimately familiar with Eclipse and Microsoft Visual Studio, respectively. Both are full-blown development environments—as full-blown as you’re going to find—that integrate Python quite nicely. However, they’re also sprawling, complex applications that come with a lot of cognitive overhead. If you’ve already mastered either of them, you’ll find it a great choice for Python work.

Microsoft’s Visual Studio Code editor, equipped with Microsoft’s Python extension, is a far more lightweight option than Visual Studio. VS Code has become immensely popular thanks to its wide range of extensions, which allow developers in projects that use not only Python but HTML and JavaScript, for instance, to assemble a collection of extensions to complement their workflow for that project.

The Python incarnation of ActiveState’s Komodo IDE is a natural fit for those who have already used the Komodo IDE for some other language, and it has unique features (like the regular expression evaluator) that ought to broaden its appeal. Komodo deserves a close look from novices and experts alike.

Spyder is best suited to working with Jupyter notebooks or other scientific computing tools in distributions like Anaconda, rather than as a development platform for Python generally. Finally, IDLE is best reserved for quick-and-dirty scripting, and even on that count, it might take a back seat to a standalone code editor with a Python syntax plug-in. That said, IDLE is always there when you need it.

IDLE

IDLE, the integrated development and learning environment included with most every installation of Python, could be considered the default Python IDE. However, IDLE is by no means a substitute for a full-blown IDE; it’s more like a fancy file editor. Still, IDLE remains one of the default options for Python developers to get a leg up with the language, and it has improved incrementally with each release of Python, especially with Python 3.5. (See this page for an interesting discussion of the recent efforts to improve IDLE.)

IDLE is built entirely with components that ship with a default installation of Python. Aside from the CPython interpreter itself, this includes the Tkinter interface toolkit. One advantage of building IDLE this way: It runs cross-platform with a consistent set of behaviors. As a downside, the interface can be terribly slow. Printing large amounts of text from a script into the console, for instance, is many orders of magnitude slower than if the script is run directly from the command line.

IDLE has a few immediate conveniences. It sports a built-in read-eval-print loop (REPL), or interactive console, for Python. In fact, this interactive shell is the first item presented to the user when IDLE is launched, rather than an empty editor. IDLE also includes a few tools found in other IDEs, such as providing suggestions for keywords or variables when you hit Ctrl-Space, and an integrated debugger. But the implementations for most of these features are primitive compared to other IDEs and hidebound by Tkinter’s limited selection of UI components. And the collection of third-party add-ons available for IDLE (one such project is IdleX) is nowhere near as rich as you’ll find with other IDEs.

IDLE also has no concept of a project, and thus no provisions for working with a Python virtual environment. The only discernible way to do this is to create a virtual environment and invoke IDLE from its parent installation of Python. Using any other tooling, like test suites, can only be done manually.

In sum, IDLE is best for two scenarios. The first is when you want to hack together a quick Python script, and you need a preconfigured environment to do so. The second is for beginners who are just getting their legs. Even beginners will need to graduate to a more robust option before long.

idle IDG

IDLE is free with Python, but its minimal feature set make it best suited for beginners.

Komodo IDE

Komodo IDE, now in version 12, works as both a standalone multi-language IDE and as a point of integration with ActiveState’s language platform. Python is one of many languages supported in Komodo, and one of many languages for which ActiveState provides custom runtime builds.

On install, Komodo informs you about which programming languages, package managers, and other development tools it discovers on the system. This is a great way to get things configured out of the box. I could see, and be certain, that Komodo was using the right version of Python and the correct install of Git.

When you create a new project for a specific language, Komodo presents a slew of options to preconfigure that project. For Python projects, you can choose from one of several common web frameworks. A sample project contains examples and mini-tutorials for many of the supported languages, Python included. Navigation within files is nice and smooth, as there’s a drop-down search widget for all methods and functions within a file. Key bindings are configurable and can be added by way of downloadable packages that emulate other editors (e.g., Sublime Text).

1. Available as extension. 2. Available as extension, but supports only syntax checking. 3. Available in commercial version. 4. See integration instructions. 5. Uses version control systems installed on host.
  IDLE Komodo LiClipse PyCharm Visual Studio Code Visual Studio Spyder
Cython support No No No Yes (3) Yes (2) No No
Version control No Yes Yes Yes Yes Yes Yes (5)
Graphical debugger No Yes Yes Yes Yes Yes No
Jupyter support No No No Yes Yes Yes (4) Yes
Macros No Yes Yes (1) Yes (1) Yes (1) Yes No
Multiple interpreters No Yes Yes Yes Yes Yes Yes
Refactoring No Yes Yes Yes Yes Yes No
Database integration No Yes Yes (1) Yes (3) Yes (1) Yes No
HTML/CSS/JavaScript No Yes Yes Yes Yes (1) Yes (3) No

One thing I like a great deal about Komodo is the inclusion of additional tools that are useful across languages, like the regular expression builder. Another powerful feature is the “Go to Anything” bar at the top center, where you can type to find most anything in your current project or the Komodo interface—a metaphor now common to many IDEs (Visual Studio Code, for instance) but always welcome when it shows up.

For linting, Komodo can integrate with PyChecker, Pylint, pep8, or Pyflakes, although support for each of these is hard-wired separately rather than available through a generic mechanism for integrating linting tools.

Some of Komodo 12’s most prominent new features revolve around integration with the ActiveState platform. Teams can configure and build custom runtimes for languages, with all the packages they need included. This is meant to ensure that members of a team don’t have to set up the runtime and dependencies for a project on their own; they can simply grab the same custom runtime with everything preloaded.

Now for the downsides. One of the biggest is the limited support for working with Python virtual environments. One has to manually create a venv, then associate the Python runtime for a project with that venv. Switching venvs for a given project requires digging into the settings for the project.

Komodo 12’s native Git integration is nowhere near as powerful as that of other IDEs. And while you can expand Komodo’s functionality with add-ons, there aren’t nearly as many add-ons for Komodo as there are for Visual Studio Code. What’s more, many of those add-ons don’t yet work in Komodo 12.

komodo IDG

The Python edition of the Komodo IDE not only provides strong Python support, but blends in support for other programming languages as well.

LiClipse / PyDev

The Eclipse Foundation’s Java-powered Eclipse editor supports many languages through add-ons. Python support comes by way of an add-on named PyDev, which you can use in two ways. You can add it manually to an existing Eclipse installation, or you can download a prepackaged version of Eclipse with PyDev called LiClipse. For this review I looked at the latter, since it provides the simplest and least stressful way to get up and running.

Aside from Python support, LiClipse also includes Git integration via Eclipse’s EGit add-on, support for Python’s Django web framework, and even support for Jython, the Python variant that runs on the JVM. This last seems fitting given Eclipse’s own Java roots, although Jython development has flagged as of late.

LiClipse makes good use of the stock features in the Eclipse UI. All keys can be remapped, and LiClipse comes with a stock set of key bindings for Emacs emulation. The “perspectives” view system lets you switch among a number of panel views depending on the task at hand—development, debugging, or working with the project’s Git repo.

Some of the best features come by way of plug-ins included in the LiClipse package. Refactoring History lets you track changes across a codebase whenever a formal refactoring takes place—something that in theory can be done with Git, but a dedicated tool like this comes in handy. Another truly nice feature is the ability to automatically trigger a breakpoint upon raising one or more exceptions, including exceptions you’ve defined.

LiClipse’s handling of virtual environments is hit-and-miss. While LiClipse doesn’t detect the presence of a venv in a project automatically, you can always configure and add venvs manually, and LiClipse integrates with Pipenv to create and manage them (assuming Pipenv is present in your base Python installation). There’s a nice GUI explorer to see which packages are installed in which Python venvs, and you can run pip from that GUI as well.

On the downside, it’s unnecesarily hard to do things like install new packages from a requirements.txt file, and it’s awkward to create a shell session with the environment activated in it—a common task that deserves its own tooling.

LiClipse comes with its own code analysis tools built-in, but can be configured to use Mypy and Pylint as well. As with Komodo, though, these choices are hard-wired into the application; there isn’t a simple way to integrate other linters not on that list. Likewise, the one test framework with direct integration into LiClipse is unittest, by way of creating a special run configuration for one’s project.

liclipse IDG

LiClipse wraps the PyDev add-on in a lightweight distribution of Eclipse, but PyDev can be added to an existing Eclipse installation too.

PyCharm

JetBrains makes a series of IDEs for various languages, all based on the same core source code. PyCharm is their Python IDE, and it’s built with an eye to support the characteristic work patterns and practices of Python developers.

This attention to workflow is evident from the moment you first create a PyCharm project. You’re given the option of setting up a virtual environment from the interpreter of your choice, with a sample main.py file in it. A convenient GUI lets you install modules to a virtual environment using pip, and the IDE will even autodetect requirements.txt files and offer to auto-install any missing dependencies. A fair amount of effort on Python projects gets eaten by wrangling virtual environments, so these features are very welcome.

You’ll find this same attention to workaday details throughout the IDE. For instance, if you run a file in your project with Alt-Shift-F10, PyCharm offers to remember that run configuration for future use. This is handy for projects that might have multiple entry points. When you kick open a command-line instance inside PyCharm with a project loaded, PyCharm automatically activates that project’s virtual environment. For users on low-powered notebooks, PyCharm’s “power save mode” disables background code analysis to keep the battery from being devoured.

Refactoring a project, another common source of tedium, also has a dedicated PyCharm tool. This goes beyond just renaming functions or methods; you can alter most every aspect of the code in question—change a function signature, for instance—and see a preview of what will be affected in the process. PyCharm provides its own code inspection tools, but a third-party plug-in makes it possible to use Pylint.

Python projects benefit from robust test suites, but developers often procrastinate on creating them because of the boilerplate involved. PyCharm’s automatic test-generation feature lets you generate skeleton test suites for existing code, then populate them with the tests as needed. If you already have tests, you can configure a run profile to execute them, with support for all of the popular testing frameworks (pytest, unittest, nose, etc.). There are other automated shortcuts as well. For a class, you can automatically look up which methods to implement or override when creating a subclass, again cutting down on boilerplate.

PyCharm can be expanded and tweaked greatly by way of the thousands of plugins available for it, which can be installed directly via PyCharm’s UI. This includes support for common data or text formats used with Python (CSV, Markdown), third-party tooling (Docker), and support for other languages (R, Rust).

PyCharm’s community edition should cover most use cases, but the professional edition (pricing here) adds some key features useful in enterprise settings, such as out-of-the-box Cython support, code coverage analysis tools, and profiling.

pycharm IDG

PyCharm’s rich set of features, even in its free edition, make it a powerful choice for most any Python development scenario.

1 2 Page 1
Page 1 of 2