There are now newer security-fix releases of Python 3.6 that supersede 3.6.4 and Python 3.8 is now the latest feature release of Python 3. Get the latest releases of 3.6.x and 3.8.x here. Python 3.6.8 is planned to be the last bugfix release for 3.6.x. Following the release of 3.6.8, we plan to provide security fixes for Python 3.6 as needed.
Release Date: Dec. 19, 2017
Python 3.6.4 was the fourth maintenance release of Python 3.6.
There are now newer security-fix releases of Python 3.6 that supersede 3.6.4 and Python 3.8 is now the latest feature release of Python 3. Get the latest releases of 3.6.x and 3.8.x here. Python 3.6.8 is planned to be the last bugfix releasefor 3.6.x. Following the release of 3.6.8, we plan to provide security fixes for Python 3.6 as needed through 2021, five years following its initial release.
Among the new major new features in Python 3.6 were:
Version | Operating System | Description | MD5 Sum | File Size | GPG |
---|---|---|---|---|---|
Gzipped source tarball | Source release | 9de6494314ea199e3633211696735f65 | 22710891 | SIG | |
XZ compressed source tarball | Source release | 1325134dd525b4a2c3272a1a0214dd54 | 16992824 | SIG | |
Mac OS X 64-bit/32-bit installer | Mac OS X | for Mac OS X 10.6 and later | 9fba50521dffa9238ce85ad640abaa92 | 27778156 | SIG |
Windows help file | Windows | 17cc49512c3a2b876f2ed8022e0afe92 | 8041937 | SIG | |
Windows x86-64 embeddable zip file | Windows | for AMD64/EM64T/x64, not Itanium processors | d2fb546fd4b189146dbefeba85e7266b | 7162335 | SIG |
Windows x86-64 executable installer | Windows | for AMD64/EM64T/x64, not Itanium processors | bee5746dc6ece6ab49573a9f54b5d0a1 | 31684744 | SIG |
Windows x86-64 web-based installer | Windows | for AMD64/EM64T/x64, not Itanium processors | 21525b3d132ce15cae6ba96d74961b5a | 1320128 | SIG |
Windows x86 embeddable zip file | Windows | 15802be75a6246070d85b87b3f43f83f | 6400788 | SIG | |
Windows x86 executable installer | Windows | 67e1a9bb336a5eca0efcd481c9f262a4 | 30653888 | SIG | |
Windows x86 web-based installer | Windows | 6c8ff748c554559a385c986453df28ef | 1294088 | SIG |
Download version 3.3.6 for | |
Windows • Mac • | |
NB! On Windows you may receive a warning dialog from Defender. Just click 'More info' and 'Run anyway'. |
Easy to get started. Thonny comes with Python 3.7 built in, so just one simple installer is needed and you're ready to learn programming. (You can also use a separate Python installation, if necessary.) The initial user interface is stripped of all features that may distract beginners. |
No-hassle variables. Once you're done with hello-worlds, select View → Variables and see how your programs and shell commands affect Python variables. |
Simple debugger. Just press Ctrl+F5 instead of F5 and you can run your programs step-by-step, no breakpoints needed. Press F6 for a big step and F7 for a small step. Steps follow program structure, not just code lines. |
Step through expression evaluation. If you use small steps, then you can even see how Python evaluates your expressions. You can think of this light-blue box as a piece of paper where Python replaces subexpressions with their values, piece-by-piece. |
Faithful representation of function calls. Stepping into a function call opens a new window with separate local variables table and code pointer. Good understanding of how function calls work is especially important for understanding recursion. |
Highlights syntax errors. Unclosed quotes and parentheses are the most common beginners' syntax errors. Thonny's editor makes these easy to spot. |
Explains scopes. Highlighting variable occurrences reminds you that the same name doesn't always mean the same variable and helps spotting typos. Local variables are visually distinguished from globals. |
Mode for explaining references. Variables are initially presented according to simplified model (name → value) but you can switch to more realistic model (name → address/id → value). |
Code completion. Students can explore APIs with the help of code completion. |
Beginner friendly system shell. Select Tools → Open system shell to install extra packages or learn handling Python on command line. PATH and conflicts with other Python interpreters are taken care of by Thonny. |
Simple and clean pip GUI. Select Tools → Manage packages for even easier installation of 3rd party packages. |
From 2014 to 2018 the main development of Thonny took place in Institute of Computer Science of University of Tartu, Estonia.
Since September 2018 development of Thonny is partially supported by Cybernetica AS.
Development of several features in Thonny 3.0 was proposed and supported by Raspberry Pi Foundation.
We are also grateful for the help of several contributors from the open-source community around the world.
Latest stable releases are linked in the download box at the top of this page. Older releases and prereleases can be found at https://github.com/thonny/thonny/releases
Thonny has simple infrastructure for extensions.
These are some known Thonny plug-ins: