Python 3.0 Editor For Mac

There was a major change between python 3.0 and 2.6, so the majority of programs for 3 won't work on 2.x (but there is a script somewhere to convert 2.x to 3). NetBeans is an open source Integrated Development Environment written in Java and is also one of IDR Solutions favorite IDE’s for Python Development. The NetBeans IDE supports a development of all Python application types ( standard out of the box. How to Install a Python 3 Environment on Mac OS X for Machine Learning and Deep Learning 792 Responses to How to Setup a Python Environment for Machine Learning and Deep Learning with Anaconda Lucky Chinedu Ekechi March 13, 2017 at 10:02 am #. NetBeans is an open source Integrated Development Environment written in Java and is also one of IDR Solutions favorite IDE’s for Python Development. The NetBeans IDE supports a development of all Python application types ( standard out of the box.

Copyright © 2009–2019 Spyder Project Contributors

Some source files and icons may be under other authorship/licenses; seeNOTICE.txt.


Help support Spyder, the community-developed scientific IDE!

Thanks to your continuing support, we are on track for aSpyder 4 release in early 2019 with all of your most-requested features(a new debugger and completion architecture, better Projects, new Editorfunctionality, full Variable Explorer object support, a built-in dark themeand much more)!

Spyder development is made possible by contributions from our global usercommunity, along with organizations like NumFOCUSand Quansight.There are numerous ways you can help, many ofwhich don't require any programming. If you'd like to make a donation to help fund further improvements,we're on OpenCollective.

Thanks for all you do to make the Spyder project thrive! More details

Overview

Spyder is a powerful scientific environment written in Python, for Python,and designed by and for scientists, engineers and data analysts. It offers aunique combination of the advanced editing, analysis, debugging, and profilingfunctionality of a comprehensive development tool with the data exploration,interactive execution, deep inspection, and beautiful visualizationcapabilities of a scientific package.

Beyond its many built-in features, its abilities can be extended even furthervia its plugin system and API. Furthermore, Spyder can also be used as a PyQt5extension library, allowing you to build upon its functionality and embedits components, such as the interactive console, in your own software.

For more general information about Spyder and to stay up to date on thelatest Spyder news and information, please check out our new website.

Core components

  • Editor

    Work efficiently in a multi-language editor with a function/class browser,real-time code analysis tools (pyflakes, pylint, and pycodestyle),automatic code completion (jedi and rope),horizontal/vertical splitting, and go-to-definition.

  • Interactive console

    Harness the power of as many IPython consoles as you like with fullworkspace and debugging support, all within the flexibility of a fullGUI interface. Instantly run your code by line, cell, or file,and render plots right inline with the output or in interactive windows.

  • Documentation viewer

    Render documentation in real-time with Sphinx for any class or function,whether external or user-created, from either the Editor or a Console.

  • Variable explorer

    Inspect any variables, functions or objects created during your session.Editing and interaction is supported with many common types, includingnumeric/strings/bools, Python lists/tuples/dictionaries, dates/timedeltas,Numpy arrays, Pandas index/series/dataframes, PIL/Pillow images, and more.

  • Development tools

    Examine your code with the static analyzer, trace its execution with theinteractive debugger, and unleash its performance with the profiler.Keep things organized with project support and a builtin file explorer, anduse find in files to search across entire projects with full regex support.

Documentation

You can read the Spyder documentation online on the Spyder Docs website.

Installation

For a detailed guide to installing Spyder, please refer to ourinstallation instructions.

The easiest way to install Spyder on any of our supported platformsis to download it as part of the Anacondadistribution, and use the conda package and environment manager to keep itand your other packages installed and up to date.

If in doubt, you should always install Spyder via this method to avoidunexpected issues we are unable to help you with; it generally has theleast likelihood of potential pitfalls for non-experts, and we may beable to provide limited assistance if you do run into trouble.

Other install options exist, including:

  • The WinPython distribution for Windows
  • The MacPorts project for macOS
  • Your distribution's package manager (i.e. apt-get, yum, etc) on Linux
  • The pip package manager, included with most Python installations

However, we lack the resources to provide individual support for users whoinstall via these methods, and they may be out of date or contain bugs outsideour control, so we recommend the Anaconda version instead if you run into issues.

Python Free Editor

Troubleshooting

Before posting a report, please carefully read our Troubleshooting Guideand search the issue trackerfor your error message and problem description, as the great majority of bugsare either duplicates, or can be fixed on the user side with a few easy steps.Thanks!

Contributing and Credits

Spyder was originally created by Pierre Raybaut, and is currently maintained byCarlos Córdoba and an internationalcommunity of volunteers.

You can join us—everyone is welcome to help with Spyder!Please read our contributing instructionsto get started!

Certain source files are distributed under other compatible permissive licensesand/or originally by other authors.The icons for the Spyder 3 theme are derived from Font Awesome 4.7 (© 2016 David Gandy; SIL OFL 1.1).Most Spyder 2 theme icons are sourced from the Crystal Project icon set (© 2006-2007 Everaldo Coelho; LGPL 2.1+).Other Spyder 2 icons are from Yusuke Kamiyamane (© 2013 Yusuke Kamiyamane; CC-BY 3.0),the FamFamFam Silk icon set(© 2006 Mark James; CC-BY 2.5), and the KDE Oxygen icons (© 2007 KDE Artists; LGPL 3.0+).

See NOTICE.txtfor full legal information.

Running from a Github clone

Spyder can be run directly from the source code, hosted on theSpyder github repo.You may want to do this for fixing bugs in Spyder, adding newfeatures, learning how Spyder works or to try out development versions beforethey are officially released.

If using conda (strongly recommended), this can be done by running thefollowing from the command line (the Anaconda Prompt, if on Windows):

You also need to make sure the correct spyder-kernels version is installedfor the version of Spyder you are testing. The above procedure will give youspyder-kernels 0.x for the 3.x branch (Spyder 3),so to run the master branch (Spyder 4) you need to additionally execute:

Alternatively, you can use pip to install PyQt5 and the otherruntime dependencies listed below. However, beware:this method is recommended for experts only, and you'll need to solve anyproblems on your own.

See the installation instructions for more details on all of this.

Dependencies

Important Note: Most or all of the dependencies listed below comewith Anaconda and other scientific Python distributions, so you don't needto install them separately in those cases.

Build dependencies

When installing Spyder from its source package, the only requirement is to havea Python version equal or greater than 3.5 or 2.7.

Runtime dependencies

  • Python 3.5+ or 2.7: The core language Spyder is written in and for.
  • PyQt5 5.6+: Python bindings for Qt, used for Spyder's GUI.
  • qtconsole 4.5.5+: Enhanced Python interpreter.
  • Python-language-server: Editor code completion, calltipsgo-to-definition and real-time code analysis
  • Sphinx: Rich text mode for the Help pane.
  • Pygments 2.0+: Syntax highlighting for all file types it supports.
  • Pylint: Static code analysis.
  • Psutil: CPU and memory usage on the status bar.
  • Nbconvert: Manipulation of notebooks in the Editor.
  • Qtawesome 0.5.7+: To have an icon theme based on FontAwesome.
  • Pickleshare: Show import completions on the Python consoles.
  • PyZMQ: Client for the language server protocol (LSP).
  • QtPy 1.5.0+: Abstraction layer for Python Qt bindings so that Spydercan run on multiple Qt bindings and versions.
  • Chardet: Character encoding auto-detection in Python.
  • Numpydoc: Used by Jedi to get function return types from Numpydocstrings.
  • Cloudpickle: Serialize variables in the IPython kernel to send to Spyder.
  • spyder-kernels 1.4.0+: Jupyter kernels for the Spyder console.
  • keyring: Save Github credentials to report errors securely.
  • QDarkStyle 2.6.4+: A dark stylesheet for Qt applications, used for Spyder's dark theme.
  • atomicwrites: Atomic file writes.
  • pexpect/paramiko: Connect to remote kernels through SSH.
  • diff-match-patch: Compute text file diff changes during edition.
  • watchdog: Watch file changes on project directories.
  • pyxdg: Parse .desktop files on Linux

Optional dependencies

  • Matplotlib: 2D/3D plotting in the IPython console.
  • Pandas: View and edit DataFrames and Series in the Variable Explorer.
  • Numpy: View and edit 2- or 3-dimensional arrays in the Variable Explorer.
  • SymPy: Symbolic mathematics in the IPython console.
  • SciPy: Import Matlab workspace files in the Variable Explorer.
  • Cython: Run Cython files in the IPython console.

Sponsors

Spyder is funded thanks to the generous support of

and the donations we have received from our users around the world through Open Collective:

More information

If you have anything to contribute -- e.g. configurations for editors, new editors, or opinion -- don't hesitate to edit or create pages.

There's an EditorConfigurationHowto available.

Contents

Please keep wiki links as wiki links, use external links only if there is no existing page for the editor. Please add pages like BoaConstructor also to page IntegratedDevelopmentEnvironments.

Multiplatform Editors

Name

Platform

Impl. Language

License

Notes

Linux, FreeBSD

Python, GTK

GPLv3

Embed Vim. Little brother of PIDA

Unix/X, Windows, Mac OS X

Tcl/Tk

Proprietary

Extensible in Tcl, Tk; Can interact with python.

Unix/X, Windows, Mac OS X

Python

MIT

Python language support for Atom-IDE, powered by the Python language server.

Linux, Windows, Mac OS X

C++, wxWidgets

GPLv3

class browser does not currently work for .py files, but it's still a nice IDE to use for python projects

Linux, Windows, Mac OS X

C, GTK+

GPLv3

The link points to the features page.

Linux, Windows, FreeBSD

C

GPLv3

Cream is a free and easy-to-use configuration of the powerful and famous Vim text editor for both Microsoft Windows and GNU/Linux.

Unix/X, Windows, Mac OS X

C, GTK+

GPLv2

CSS editor with syntax highlighting for Python, and embeded Python interpreter. Extensible through a Python API.

Unix/X, Windows, Mac OS X

Python, wxPython

BSD

Extensible in Python; part of PythonCard. Includes PyCrust shell.

Unix/X, Windows, Mac OS X

Python, PyQt

GPLv3

Complete IDE, very well integrated with PyQT development, but usable for any kind of project. Supports projects, debugging, auto-complete, syntax coloring, etc. It is extensible via plug-in system. It has interfaces to Subversion and Mercurial.

Unix/X, Windows, Mac OS X

Proprietary

BRIEF-compatible, supports Python syntax, in-buffer Python interpreter, supports lots of languages. Powerful macro language.

Windows, Mac OS X, Linux

Tcl/Tk

Public domain

DRAKON diagram editor with code generation in Python.

Windows, Linux and Mac/MacPorts

Python, PyGTK

GPLv3

Interactive shell with history box and code box, auto-completion of attributes and file names, auto-display of function arguments and documentation. Keeps your recent results, provides session history saving (optionally in HTML), interactive plotting with matplotlib. Extremely fast and responsive.

Unix/X, Windows, Mac OS X

Python, wxPython

GPL

Simple, Highly Customizable Editor/Environment. A Tribute to DrScheme.

Unix/X, Windows, Mac OS X

Java

EPL

Eclipse is ... an open extensible IDE for anything and nothing in particular.' Support for Python can be obtained via the PyDEV plugin.

Linux, Windows

Proprietary

Built-in Python syntax highlighting, Python class browsing, Python-compatible regular expressions, code folding, and extensive options for running external tools such as Python scripts.

Linux, Windows, Mac OS X

Python, wxPython

wxWindows

A general purpose developer's text editor written in Python/wxPython. It supports python syntax highlighting, auto-ident, auto-completion, classbrowser, and can run scripts from inside the editor. Extensible with plugins written in python.

Unix/X, Windows, Mac OS

C, Lisp

GPLv3

Python support with EmacsPythonMode. Extensible in Python using pymacs

Linux, Windows, FreeBSD and OS/2

Proprietary

Customizable Python mode, syntax coloring, function tagging.

Linux, Windows, Mac OS

Python, PyQt4

GPLv3

Extensible editor written in Python, Python/C/Nim code tree browser, 3-window editing, text diff, multi-language support, Python REPL, manipulate editor text with Python code

Unix/X, Windows, DOS, OS/2

C++

GPL

Supports lots of languages, including Python; doesn't seem programmable

Unix/X, Windows

C, GTK+

GPLv2

A small and lightweight GTK+ IDE that supports lots of languages, including Python.

Unix/X, Windows, Mac OS

C, Python

GPLv2

gedit is the official text editor of the GNOME desktop environment, with Python syntax highlighting.

Unix/X, Windows, Mac OS

Python, PyQt

Proprietary

Ideas is a feature rich IDE that supports debugging, interpreting and project management.

Linux, Windows, Mac OS X

Java

GPLv2

syntax coloring for python, extensible with jython, supports many file formats, has folding, fully customisable, has sidebar for class and functions, fast for a Java application

Unix, Windows, Mac OS

Java

GPLv3

IDE with Jython Shell. Syntax coloring for python, extensible with jython, supports many file formats, fully customisable, has sidebar for class and functions

Unix, Windows

C

GPLv2

Supports Python syntax and a Python-specific menu.

Unix, VMS, MSDOS, OS/2, BeOS, QNX, and Windows.

C

GPLv2

Syntax highlighting and indenting, (optional) emacs keybindings, programmable with s-lang. Note: comment out 'msw_help(...' line in pymode.sl if you are having problems on Windows.

Unix, Windows, Mac OS

Java

GPLv2

Has three plugins - one for Jython and one for Python/Jython JpyDbg - interactive editing debugging, code browsing, highlighting.

Linux, Windows, Mac OS

Java, Python

GPL

NetbeansjEdit cross IDE plugin

Unix/OSX/Cygwin/Interix (curses), MS-DOS (DR DOS, FreeDOS, Win, OS/2 DOS-Box)

C

GPL

Versatile WordStar-like editor (JOE fork) with many colourised syntax-highlighting modes

Linux, Windows, Mac OS

C++

GPLv2

Kde main developping app. Code folding, syntax highlighting, navigator. projects, class browser, version control, customizable keybindings. Comes also with some typical python project models: pyton Qt app, Tkinter app and simple script.

Unix, Windows, Mac OS X

Proprietary

Komodo is an award winning Python IDE from ActiveState. Fully-integrated Python Python 2.x and Python 3 support featuring code intelligence with autocomplete and calltips, Python debugger (includes remote debugging), interactive shell, remote file support, macros, templating, emacs command support and great help documentation. There is also an open-source version called Komodo Edit (Source), as part of the Open Komodo project started November 2007.

Unix/X, Windows, Mac OS X

Proprietary/Open Source

scaled-down version of Komodo IDE which also supports Python, but excludes the integrated debugger.

Unix/X, Windows, Mac OS X

Python, wxPython

GPLv3

Python IDE with focus is on simplicity and ease of use. It is fast and lightweight. It features Python indentation, line numbers, code folding, syntax highlighting, shell access, code completion, a program runner, a source browser, indentation guides, a white space indicator, autosaving, an edge line, multiple tabs, printing, jumping to a specific line, word searching, word replacement, zooming undo/redo, pastebin.com code submission, Python syntax checking, the ability to change the indentation of many lines at once, autocompletiton, and bad brace checking.

Linux, Windows, Mac OS X

Python, PyQt

MIT

Outlining editor, fully scriptable and extensible, supporting literate programming. 100% pure Python code.

Unix, Windows

C, GTK+

LGPL

Gtk editor with python bindings, allows plugins written in python.

Linux, Windows

C

GNU GPL

Small, terminal-based editor, Syntax highlighting

Unix, Windows, Mac OS X

C

GPLv3

Easy to use, small, powerful, fast, terminal-based editor. Supports UTF-8, syntax highlighting, undo, autocomplete, macros, regexes, bookmarks. v2.4 released 2012-04

Unix/X, Windows, Mac OS X

C

GPLv2

X-Based, Python support builtin.

Unix/X, Windows, Mac OS X, others

Java

GPLv2

Netbeans is an open extensible cross platform IDE ; Support for Python can be obtained via the JpyDbg plugin. A new plugin exists for Netbeans 6.5 or newer - info.

Linux, Windows, Mac OS

Python, PyQt4

GPLv3

Lightweight and extensible editor. Class browser, project manager, PEP8 finder, virtualenv, plugin support

Unix/X, Windows, Mac OS X

Python, wxPython

GPLv2

wxPython based editor. Can be easily extended with mixins and plugins, and has many features. Seems to be biased towards Python web development as contains FTP GUI, RSS aggregator and HTML preview.

Windows NT, Linux (with GTK+ 2)

C++, wxWidgets

Freeware

Easy to use text editor with syntax highlighting for Python. Embeds the Python interpreter to extend functionality of the application

Linux, Windows, Mac OS X

Java

Apache 2.0

Full-featured IDE for Python. Has Free and Open Source edition fully supporting Python as well as proprietary Professional Edition with Django, Flask, Pyramid and Google App Engine support.

Linux, Windows, Mac OS X

Java, Eclipse

EPL

Eclipse plugin. Code-completion. Debugger. Under active development. (ShowMeDo Videos)

Linux, Windows

Python, Tk

GPLv3

Ultra-lightweight Python/text editor made in Python with Tk. Emphasis on easy customization and no-bloat attitude.

Unix, Windows, Mac OS X

Python, wxPython

GPLv2

Written in Python - code folding, snippets, unicode, multiple documents, code completion, several languages, macros.

Linux, Windows, Mac OS X

MIT

Free open-source extension for Visual Studio Code. Supports syntax highlighting, debugging, code completion, code navigation, refactoring, with support for Django, multi threaded, local and remote debugging.

Windows/Linux/Mac (wxPython)

Python

GPLv3

An interactive environment for python features include: Multiple independent python interpreters. Interactively program with different GUI toolkits (wxPython, TkInter, pyGTK, pyQT4 and PySide). Matlab style namespace/workspace browser. Object auto-completions, calltips and multi-line command editing in the console. Object inspection and python path management. Simple code editor and integrated debugger.

Unix/X, Windows, Mac OS X

Python, PySide

BSD License

Open-source Python IDE focused on interactivity and introspection, which makes it very suitable for scientific computing. Its practical design is aimed at simplicity and efficiency. Pyzo consists of two main components, the editor and the shell, and uses a set of pluggable tools to help the programmer in various ways: e.g. source structure, interactive help, workspace, file browser (with functionality for searching). Also includes a post-mortem debugger.

SciTE

Windows, Linux (GTK+)

C++

MIT-Like

A highly configurable light-weight source code editor (about 50 file formats) based on widely-used Scintilla rich text widget/control. Features: sytax highlighting, code folding, auto-indent, brace matching, codepage/unicode support, multiple documents, context help, code execution, output pane, external tools support, RegExp find/replace, text export (HTML, RTF, PDF, LaTeX, XML). Python API for calltips and autocompletion available.

Windows, Linux, Mac OS X

Python, wxPython

GPLv3

Stani's Python Editor. Auto indentation, auto completion, call tips, syntax coloring/highlighting, UML viewer, class explorer, source index, auto todo list, sticky notes, integrated PyCrust shell, Python file browser, recent file browser, drag&drop, context help. Blender support with a Blender 3D object browser, runs interactively inside Blender. Ships with WxGlade (GUI designer), PyChecker (source code doctor) and Kiki (regular expression console). Extensible with WxGlade. (ShowMeDo Videos)

Windows, Linux, macOS

Python, PyQt5

MIT

Spyder is a powerful scientific environment written in Python, for Python,and designed by and for scientists, engineers and data analysts. It features a unique combination of the advanced editing, analysis, debugging and profiling functionality of a comprehensive development tool with the data exploration, interactive execution, deep inspection and beautiful visualization capabilities of a scientific package. Furthermore, Spyder offers built-in integration with many popular scientific packages, including NumPy, SciPy, Pandas, IPython, QtConsole, Matplotlib, SymPy, and more. Beyond its many built-in features, Spyder's abilities can be extended even further via first- and third-party plugins. It is conveniently integrated in the cross-platform Anaconda distribution, and is the centerpiece of the Python(x,y) and WinPython distributions for Windows.

Unix/X, Windows, Mac OS X

Proprietary

Syntax coloring, popup function arguments, class hierarchy browser, graphical debugger, and other nice Python features. Context tagging with class/module namespaces, code navigation, and smart indenting are also supported.

Linux, Windows, Mac OS X

C++, Python

Proprietary

Beautiful interface, Python syntax highlighting, Python plugins.

Linux, Windows, Mac OS X

Python

MIT

For teaching/learning programming. Focused on program runtime visualization. Provides stepping both in statements and expressions, no-hassle variables view, separate mode for explaining references etc.

Unix/X, Windows, Mac OS

C

Charityware

Highly configurable text editor built to enable efficient text editing. Syntax coloring, indenting, autocompletion, and source-navigation tools for Python. Can be scripted in Python. See also Cream.

Unix/X, Windows, Mac OS X

Proprietary

Powerful commercial IDE designed specifically for Python. Auto-completion, call tips, syntax highlighting, goto-definition, keyboard modes for emulating Visual Studio, VI/Vim, Emacs, & Brief, graphical debugger, code browser, integrated shell, scriptable in Python, and much more. (ShowMeDo Videos)

Linux, Windows

Python, wxPython

GPL

Simple text editor written in python. Syntax highlighter, Code fold, Export code in HTML...

Unix-Only Editors

Name

Platform

FreeSoftware?

ZeroPrice?

Notes

Unix + GTK

X

Supports debugging Python, Tcl, Ruby, Perl, Lua scripts. Code intelligence (Code completion, folding, auto-complete, code snippets, syntax highlighting matching tags, show keyword or variable information when mouse over...). Keyword help and improved script document. Integrated commonly-used scripting libraries (Tk, wxPython, Pygame, Pmw, Numeric...). Supports compiling python scripts to Windows EXE files.

Windows-Only Editors

Name

Platform

Impl. Language

License

Notes

Windows

C++

GPL

Notepad++ is a free source code editor and Notepad replacement that supports several languages. Running in the MS Windows environment, its use is governed by GPL License. Based on the powerful editing component Scintilla, Notepad++ is written in C++ and uses pure Win32 API and STL which ensures a higher execution speed and smaller program size. By optimizing as many routines as possible without losing user friendliness, Notepad++ is trying to reduce the world carbon dioxide emissions. When using less CPU power, the PC can throttle down and reduce power consumption, resulting in a greener environment.

Windows

Pascal/Delphi

MIT

Free and open-source Python IDE created with the ambition to become competitive in functionality with commercial Windows-based IDEs

Macintosh-Only Editors

Name

Platform

Notes

Mac OS

Python-mode extensible in Tcl

Mac OS X 10.4 or later

Full-featured text editor; includes Python support. TextWrangler is the free version (see below).

Mac OS X 10.7 or later

General purpose editor with autocompletion for the Python standard library, plus inline documentation.

Mac OS X 10.4 or later

'text editor + file transfer + svn + css + terminal + books + more = whoah. welcome to coda. grow beautiful code.'

Mac OS X (Cocoa)

Programmer's text editor with Python syntax highlighting. Written in Python with PyObjC. Open-source (GPL).

OS X (Cocoa)

Fork of Smultron. No longer under development

Mac OS

Included in MacPython distribution.

Mac OS 68k Mac OS 9 Mac OS X

Does not initially include Python support but new language modes can be created. One available here Mi_Python

Mac OS X

Python syntax coloring. Allow multiple author to edit the same file collaborativelly over the network using 'Bonjour' (previously Rendezvous).

Mac OS X 10.4 or later

Free and full-featured text editor based on BBEdit. Includes Python syntax highlighting.

Mac OS X

Free IDE and text editor. Includes Python syntax coloring.

Mac OS X 10.3.9+

Great Cocoa editor with Python support including syntax coloring, integrated documentation, and a runtime wrapper with hyperlinked tracebacks. Note that code-folding of classes is currently broken for PEP 8 compliant code.

Mac OS X 10.6 or later

Again under active development, support for Python syntax coloring. Only available in the Mac App Store.

Mac OS X 10.3 or later

Free OS X based IDE for the Python (and other) programming language (replaces discontinued PyOXIDE), with syntax coloring, completion, tool tips, source level debugger, help browser, etc...

Mac OS X 10.6 or later

Free text editor, with Python syntax highlighting. A paid pro version with more features is also available.

Online Editors

Name

Notes

A general web-based IDE with support for Python. Provides a full Ubuntu environment with Python 2.7.6, and support for Django workspaces.

An interactive Python IDE for data exploration and visualization. Provides a full online Anaconda-based Python environment, with real-time collaboration, interactive IPython sessions, and easy publishing of output figures and code. Includes syntax highlighting and autocomplete. The service was shut down on 2nd Jan 2017

'Host, run, and code Python in the cloud!' Free and paid plans include access to multiple versions of CPython, PyPy, IPython notebooks, a large selection of third-party modules, bash and MySQL shells, and more.

An online IDE for numerical and data science computing experiments - includes: real-time collaboration, a customizable editor, a console and much more. The basic account is free of charge.

A collection of computational mathematics tools in the cloud, including IPython notebooks, SageMath, Numpy/Scipy/Matplotlib, and Cython.

Continuum Analytics' (distributors of the Anaconda Python distribution) hosted data analysis environment. Includes IPython notebooks, data visualization methods like matplotlib and bokeh, ability to add AWS nodes and clusters, command-line shells, file storage, SSH access, and other elements. (Some features require paid account)

Glorified Editors

'IDEs' that don't integrate anything Python-specific go here.

Name

Platform

Notes

Unix + GNOME

Cross-language IDE; syntax coloring & folding for Python.

Linux x86

Commercial IDE with support to 30 other languages.

Unix

Commercial cross-language IDE; nice multi-user project manager.

Windows

Cross-language IDE with integrated SQL support and automation features (currently German only GUI)

Python + wxPython

Simple, Highly Customizable Editor/Environment. A Tribute to DrScheme.

Java + Jython + Python

An OpenSource IDE for Python, Jython, and Java. Supports Syntax highlighting, Code Completion and many more. Developed in Java.

Python + Tkinter + Tix

An extended version of IDLE using Tix.

Java

Java IDE with Python support through Pythonid plugin - includes code completion, syntax & error highlighting, intra-file refactoring

Unix + KDE

Cross-language IDE for KDE - supports Python syntax/projects.

Java

A Java IDE with an optional plugin for Jython.

Windows/X (Python+wxPython)

Written in Python - code folding, snippets, unicode, multiple documents, code completion, several languages, macros.

Windows

Available either as part of ActiveState's ActivePython distribution (which is not open source) or as part of the Win32All extensions from Mark's pages (which is open source).

Unix/Windows/Mac

rope is a python IDE aimed at providing a rich set of software refactorings.

Unix/Windows with Tcl/Tk

Cross-language IDE & Source code analysis tool.

Eclipse

Python and PHP IDE; available in commercial Professional and open-source Foundation versions

Windows

GUI designer for wxPython.

Linux/Windows/Mac

Full featured, free IDE bundled with wxPython, features projects, scintilla, and debugging

Unix/Windows/Mac

Non-free Cross-language GUI dialog designer with integrated support for editing your Python callback functions.

Unix/Windows/Mac

A 'designer' for WxPython (requires wxPython)

Unix/Windows/Mac

Multi-language editor that support python autocomplete, Direcotry/class browser, tags/multi-views editing, unicode, and Django wizard(requires wxPython)

Python Tkinter

GUI, class browser, file manager, with code completion. Licensed under the GPL.

Enhanced Python shells

Name

Platform

Notes

Python + PyCrust

Interactive Python shell included in wxPython.

Python + PySlices

New 'notebook' version of PyCrust with save/load features and the ability to run blocks of code in separate 'slices'.

Unix, Mac OS X, Windows

Enhanced interactive Python shell. Also usable as pythonic system shell (bash/cmd.exe) replacement. Supports autocompletion. Inline syntax highlighting. (ShowMeDo Videos)

Java, at least 1.4

Interactive, embeddable Jython shell with code completion. Licensed under the QPL.

win32

Interactive python shell using wxPython. py script and exe for win. Data plotting capability from within the shell. Free.

KDE

An interactive Python shell using PyKDE and a KHTMLPart (for HTML rendering).

Python 2.3 (or higher) and PyQt

An interactive Python shell using PyQt.

Unix, Mac OS X

Interactive shell with highlighting and autocomplete.

Mobile Device Editors

'IDEs' that run on mobile devices and tablets.

Name

Platform

Notes

iOS

Universal iOS (iPod Touch, iPhone, iPad) IDE.

iOS

Universal iOS (iPod Touch, iPhone, iPad) IDE.

iOS

Universal iOS (iPod Touch, iPhone, iPad) IDE.

iOS

Universal iOS (iPod Touch, iPhone, iPad) IDE.

iOS

Universal iOS (iPod Touch, iPhone, iPad) IDE.

iOS

Universal iOS (iPod Touch, iPhone, iPad) IDE.

iOS

Universal iOS (iPod Touch, iPhone, iPad) IDE.

iOS

Universal iOS (iPod Touch, iPhone, iPad) IDE.

iOS

IDE for iPad

iOS

A Python Interpreter focused on math modules

iOS

IDE for iOS with native graphic and sound support through high-level API; games and interactive demos included

iOS

IDE for iPhone and iPad with Python 3 support. Custom library is supported. See Python Box page for details.

Other Resources

  • Vaults of Parnassus Editor/IDE page.

  • Open Directory Project's Python Tools page.

  • PySmell provides autocompletion for Vim, Emacs and TextMate

Never ending debate

Install python 3.6 mac

Install Python 3.6 Mac

  • EmacsVsVi

Python 3 Editor Mac

CategoryEditorsCategoryEditorsCategoryEditorsCategoryEditorsCategoryEditorsCategoryEditorsCategoryEditorsCategoryEditorsCategoryEditors