Thonny comes with Python 3.10 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.)
#!/bin/bash -eu set -e VERSION=4.1.7 VARIANT=thonny ARCHITECTURE="$(uname -m)" if [[ "$ARCHITECTURE" == "x86_64" ]]; then echo echo "This script will download and ...
From now on Thonny’s development takes place in GitHub (https://github.com/thonny/thonny) and the releases will be described there: https://github.com/thonny/thonny/releases/tag/v3.1.0
If you don’t want to overwrite your current Thonny, then you can pip install --pre thonny into a virtual environment. Since 3.0, when Thonny is run from a virtual environment, it keeps all user data (eg. configuration.ini) also inside this environment.
Now you can also install Thonny for all users (eg. under ``C:\Program Files (x86)``). For this you need to run the installer as administrator (right-click insta...
Now you can also install Thonny for all users (eg. under C:\Program Files (x86)). For this you need to run the installer as administrator (right-click installer exe and select “Run as administrator”).
Basic MicroPython support built-in MicroPython plug-ins for Thonny have been available for a while, but so far this topic was kept separate from the main project. Since Thonny 3.0 the core of these plug-ins will be developed and distributed as part of the thonny package.
Assistant is a new view in Thonny, which observes your program runs and offers help if you get an exception or if it finds something fishy in your code. It uses Pylint and MyPy for static analysis and custom dynamic analysis for understanding the error situations better.
Thonny, Python IDE for beginnersVersion 2.1.17 This version fixes a bug in package manager (triggered by the release of pip 9.0.2). See the homepage for download links, and wiki for installation instructions.
This was fixed in 2.1.1, but if you’re reading this, the upgrade is not actually necessary – just re-start Thonny and you’re done (you won’t meet this issue on next runs).