Thonny Free Download

broken image


Download Python 3.7.4. Online Python IDE is a web-based tool powered by ACE code editor. This tool can be used to learn, build, run, test your python script. You can open the script from your local and continue to build using this IDE.

Download version 3.3.6 for
Windows • Mac •
For the curious: 3.3.7
NB! On Windows you may receive
a warning dialog from Defender.
Just click 'More info' and
'Run anyway'.

Features

Farming simulator 2019 pc download. 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.

Navigate the list of applications until you find Thonny 2.1.22 or simply activate the Search feature and type in 'Thonny 2.1.22'. If it exists on your system the Thonny 2.1.22 application will be found automatically. When you click Thonny 2.1.22 in the list of apps, some information regarding the program is shown to you. Free thonny download. Development Tools downloads - Thonny by Aivar Annamaa and many more programs are available for instant and free download.

Demo

Credits

Download Thonny 3.7

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 and 3.3 was proposed and supported by Raspberry Pi Foundation.

Thonny download linux

We are also grateful for the help of several contributors from the open-source community around the world.

Instructions & downloads

  • Installation instructions

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

Plug-ins

Thonny has simple infrastructure for extensions.

Vegetable garden bed layout. These are some known Thonny plug-ins:

  • thonny-black-format adds a command for formatting current file with Black
  • thonny-ev3dev allows uploading code to EV3 (and much more)
  • thonny-lahendus allows loading exercises from lahendus.ut.ee and submitting solutions for automatic assessment.
  • thonny-edison allows uploading Python code to Edison educational robot
  • thonny-dracula adds Dracula syntax theme.
  • thonny-onedark adds One Dark syntax theme.
  • thonny-crosshair adds commands for invoking CrossHair analyzer.
  • thonny-icontract-hypothesis adds commands for invoking icontract-hypothesis analyzer.
Note that Thonny developers are not responsible for these plug-ins!

Contact & News

Papers

Thonny
Developer(s)Aivar Annamaa and contributors
Stable release
Repository
Written inPython
Operating systemCross-platform
PlatformWindows, Linux, macOS
TypeIntegrated development environment
LicenseMIT
Websitethonny.org

Thonny is an integrated development environment for Python that is designed for beginners. It supports different ways of stepping through the code, step-by-step expression evaluation, detailed visualization of the call stack and a mode for explaining the concepts of references and heap.[1]

Features[edit]

  • Statement stepping without breakpoints
  • Live variables during debugging
  • Stepping through evaluation of the expressions (expressions get replaced by their values)
  • Separate windows for executing function calls (for explaining local variables and call stack)
  • Variables and memory can be explained either by using simplified model (name → value) or by using more realistic model (name → address/id → value)
  • Simple pip GUI
  • Support for CPython and MicroPython
  • Support for running and managing files on a remote machine via SSH
  • Possibility to log user actions for replaying or analyzing the programming process

[2][3][4][5] Twitter rimworld.

Availability[edit]

How To Install Thonny

The program works on Windows, macOS and Linux. It is available as binary bundle including recent Python interpreter[3] or pip-installable package.[6] It can be installed via operating-system package manager on Debian, Raspberry Pi, Ubuntu and Fedora.

Reception[edit]

Thonny has received favorable reviews from Python and computer science education communities.[7][8][9] It has been recommended tool in several programming MOOCs.[10][11]Since June 2017 it has been included by default in the Raspberry Pi's official operating system distribution Raspberry Pi OS.[12]

See also[edit]

References[edit]

  1. ^Annamaa, Aivar (2015). 'Introducing Thonny, a Python IDE for learning programming'. Proceedings of the 15th Koli Calling Conference on Computing Education Research. Koli, Finland: ACM. pp. 117–121.
  2. ^Annamaa, Aivar (2015). 'Thonny, a Python IDE for learning programming'. Proceedings of the 2015 ACM Conference on Innovation and Technology in Computer Science Education. Vilnius, Lithuania: ACM. p. 343.
  3. ^ ab'Thonny website'. Retrieved 28 October 2018.
  4. ^'Thonny on a Raspberry Pi: Using the new Python IDE in Raspbian'. The MagPi Magazine. Retrieved 28 October 2018.CS1 maint: discouraged parameter (link)
  5. ^'Learn to code with Thonny — a Python IDE for beginners'. Fedora Magazine. Retrieved 28 October 2018.CS1 maint: discouraged parameter (link)
  6. ^'Thonny Python distribution'. Python Package Index. Retrieved 28 October 2018.CS1 maint: discouraged parameter (link)
  7. ^'Are you a Python newbie? Meet the IDE for beginners'. JAXenter. Retrieved 28 October 2018.CS1 maint: discouraged parameter (link)
  8. ^'New Term New Tool - Thonny, a Python IDE'. C'est la Z. Retrieved 28 October 2018.CS1 maint: discouraged parameter (link)
  9. ^'Python IDEs for beginners - Thonny, Geany or Idle'. ProjectCodeEd. Retrieved 28 October 2018.CS1 maint: discouraged parameter (link)
  10. ^'Installing Packages in Thonny'. Python Data Visualization MOOC by Rice University. Retrieved 28 October 2018.CS1 maint: discouraged parameter (link)
  11. ^'Thonny'. Programmming MOOC by University of Tartu. Retrieved 28 October 2018.CS1 maint: discouraged parameter (link)
  12. ^'A Raspbian desktop update with some new programming tools'. Raspberry Pi blog. Retrieved 28 October 2018.CS1 maint: discouraged parameter (link)

External links[edit]


Retrieved from 'https://en.wikipedia.org/w/index.php?title=Thonny&oldid=1016736758'




broken image