Downloads:
58,752
Downloads of v 3.3.0-beta7:
150
Last Update:
02 Nov 2020
Package Maintainer(s):
Software Author(s):
- Aivar Annamaa
Tags:
thonny admin- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Thonny
This is a prerelease version of Thonny.
- 1
- 2
- 3
3.3.0-beta7 | Updated: 02 Nov 2020
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
58,752
Downloads of v 3.3.0-beta7:
150
Maintainer(s):
Software Author(s):
- Aivar Annamaa
Thonny 3.3.0-beta7
This is a prerelease version of Thonny.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Aivar Annamaa. The inclusion of Aivar Annamaa trademark(s), if any, upon this webpage is solely to identify Aivar Annamaa goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Thonny, run the following command from the command line or from PowerShell:
To upgrade Thonny, run the following command from the command line or from PowerShell:
To uninstall Thonny, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download thonny --internalize --version=3.3.0-beta7 --pre --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade thonny -y --source="'INTERNAL REPO URL'" --version="'3.3.0-beta7'" --prerelease [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade thonny -y --source="'INTERNAL REPO URL'" --version="'3.3.0-beta7'" --prerelease
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install thonny
win_chocolatey:
name: thonny
version: '3.3.0-beta7'
source: INTERNAL REPO URL
state: present
allow_prerelease: yes
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'thonny' do
action :install
source 'INTERNAL REPO URL'
version '3.3.0-beta7'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller thonny
{
Name = "thonny"
Version = "3.3.0-beta7"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'thonny':
ensure => '3.3.0-beta7',
install_options => ['--prerelease'],
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 02 Nov 2020.
Features
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.
Initial layout
No-hassle variables. Once you're done with hello-worlds, select View → Variables and see how your programs and shell commands affect Python variables.
Variables table
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.
Stepping through statements
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.
Visualization of expression evaluation
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.
Visualization of call frames
Highlights syntax errors. Unclosed quotes and parentheses are the most common beginners' syntax errors. Thonny's editor makes these easy to spot.
Visualization of syntax errors
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.
Local and global names are visually distinguished
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).
Variables table vs values table
Code completion. Students can explore APIs with the help of code completion.
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.
System shell prepared for Python commands
Simple and clean pip GUI. Select Tools → Manage packages for even easier installation of 3rd party packages.
Please Note: This is an automatically updated package. If you find it is
out of date by more than a day or two, please contact the maintainer(s) and
let them know the package is no longer updating correctly.
From: <https://github.com/thonny/thonny/blob/master/LICENSE.txt>
LICENSE
The MIT License (MIT)
Copyright (c) 2019 Aivar Annamaa
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
The installer have been downloaded from their official download link listed on <https://github.com/thonny/thonny/releases>
and can be verified like this:
1. Download the following installers:
32-Bit: <https://github.com/thonny/thonny/releases/download/v3.3.0b7/thonny-3.3.0b7.exe>
2. You can use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'
checksum type: sha256
checksum32: A31BFD4BC21245D0A5D99E0280245246A071AADF8A3FC9452A0A1944DA65B87B
File 'LICENSE.txt' is obtained from <https://github.com/thonny/thonny/blob/master/LICENSE.txt>
md5: 1CBD51EAE952452E5E4FF7C0E5C0431F | sha1: C06BF0EE134B2880722E656A8A66A93875C28016 | sha256: A31BFD4BC21245D0A5D99E0280245246A071AADF8A3FC9452A0A1944DA65B87B | sha512: CEBD06B06B3CD9B80DD128F0F4E0F32513F308E73C75D03A871DF2363F7E59BA2B57A35CA69FA0A210456FC7AEE85858D38AF6DEAFA75CD5A1C772038BB5D5F2
Log in or click on link to see number of positives.
- thonny.3.3.0-beta7.nupkg (b3ee41b30ae1) - ## / 66
- thonny-3.3.0b7.exe (a31bfd4bc212) - ## / 66
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Thonny 4.1.6 | 3596 | Wednesday, September 11, 2024 | Approved | |
Thonny 4.1.4 | 16310 | Sunday, December 17, 2023 | Approved | |
Thonny 4.1.0-beta1 | 377 | Monday, April 24, 2023 | Approved | |
Thonny 4.0.0-beta4 | 108 | Sunday, August 14, 2022 | Approved | |
Thonny 4.0.0-beta3 | 85 | Sunday, May 22, 2022 | Approved | |
Thonny 4.0.0-beta2 | 73 | Monday, May 9, 2022 | Approved | |
Thonny 4.0.0-beta1 | 96 | Monday, March 21, 2022 | Approved | |
Thonny 3.3.13 | 23509 | Sunday, July 25, 2021 | Approved | |
Thonny 3.3.11 | 951 | Friday, June 25, 2021 | Approved | |
Thonny 3.3.10 | 1398 | Tuesday, May 18, 2021 | Approved | |
Thonny 3.3.7 | 715 | Friday, April 30, 2021 | Approved | |
Thonny 3.3.6 | 1381 | Saturday, March 6, 2021 | Approved | |
Thonny 3.3.5 | 586 | Monday, February 22, 2021 | Approved | |
Thonny 3.3.4 | 391 | Wednesday, February 17, 2021 | Approved | |
Thonny 3.3.3 | 775 | Thursday, January 21, 2021 | Approved | |
Thonny 3.3.2 | 515 | Wednesday, January 6, 2021 | Approved | |
Thonny 3.3.1 | 624 | Sunday, December 6, 2020 | Approved | |
Thonny 3.3.0 | 840 | Sunday, November 15, 2020 | Approved | |
Thonny 3.3.0-beta7 | 150 | Monday, November 2, 2020 | Approved | |
Thonny 3.3.0-beta2 | 151 | Thursday, September 3, 2020 | Approved | |
Thonny 3.2.7 | 2193 | Wednesday, March 11, 2020 | Approved | |
Thonny 3.2.6 | 616 | Thursday, January 2, 2020 | Approved | |
Thonny 3.2.5 | 354 | Wednesday, December 25, 2019 | Approved | |
Thonny 3.2.4 | 435 | Saturday, December 7, 2019 | Approved | |
Thonny 3.2.3 | 560 | Sunday, November 3, 2019 | Approved | |
Thonny 3.2.1 | 739 | Saturday, September 7, 2019 | Approved | |
Thonny 3.2.0 | 479 | Monday, August 12, 2019 | Approved | |
Thonny 3.2.0-beta7 | 183 | Sunday, July 21, 2019 | Exempted | |
Thonny 3.1.2 | 562 | Wednesday, April 10, 2019 | Approved |
Aivar Annamaa
This package has no dependencies.
Ground Rules:
- This discussion is only about Thonny and the Thonny package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Thonny, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.