Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
- Passing
- Failing
- Pending
- Unknown / Exempted
Downloads:
6,143,097
Downloads of v 3.6.2:
33,430
Last Update:
17 Jul 2017
Package Maintainer(s):
Software Author(s):
- Python Software Foundation
Tags:
python programming development foss cross-platform admin- Software Specific:
- Software Site
- Software Source
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Python 3.x
This is not the latest version of Python 3.x available.
- Software Specific:
- Software Site
- Software Source
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
6,143,097
Downloads of v 3.6.2:
33,430
Maintainer(s):
Software Author(s):
- Python Software Foundation
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
Python 3.x 3.6.2
This is not the latest version of Python 3.x available.
This Package Contains an Exempted Check
1 Test Passing and 1 Exempted Test
Validation Testing Passed
Verification Testing Exempt:
Needs to install some Windows updates if they are missing, however it doesn't know how to do that. The exit code is 23, which is a CRC error, so it is technically probably not even correct - https://msdn.microsoft.com/en-us/library/windows/desktop/ms681382(v=vs.85).aspx
To install Python 3.x, run the following command from the command line or from PowerShell:
To upgrade Python 3.x, run the following command from the command line or from PowerShell:
To uninstall Python 3.x, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
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://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
choco download python3 --internalize --version=3.6.2 --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade python3 -y --source="'STEP 3 URL'" [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 python3 -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure python3 installed
win_chocolatey:
name: python3
state: present
version: 3.6.2
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'python3' do
action :install
version '3.6.2'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: python3,
Version: 3.6.2,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller python3
{
Name = 'python3'
Ensure = 'Present'
Version = '3.6.2'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'python3':
provider => 'chocolatey',
ensure => '3.6.2',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install python3 version="3.6.2" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 17 Jul 2017.
Python 3.x is a programming language that lets you work more quickly and integrate your systems more effectively. You can learn to use Python 3.x and see almost immediate gains in productivity and lower maintenance costs.
Package Parameters
/InstallDir
- Installation directory
These parameters can be passed to the installer with the user of --params.
For example: --params '"/InstallDir:C:\tools\python2"'
Notes
- This package installs the latest stable version of Python 3.x. It will install to Python 3.x to C:\Python3x.
- This package is not intended to use with Chocolatey’s
-x86
parameter. If you want a 32-bit Python 3.x on 64-bit systems, install the {{PackageName}}-x86_32 package instead. You can also install both. In that case you must manually adapt your .exe shims so that it picks the desired version when you invokepython.exe
.
# This file should be identical for all python3* packages
# https://docs.python.org/3/using/windows.html#installing-without-ui
$installDir = '{0}\Python{1}' -f $Env:SystemDrive, ($Env:ChocolateyPackageVersion -replace '\.').Substring(0,2)
if ($Env:ChocolateyPackageParameters -match '/InstallDir:\s*(.+)') {
$installDir = $Matches[1]
if ($installDir.StartsWith("'") -or $installDir.StartsWith('"')){ $installDir = $installDir -replace '^.|.$' }
#$parent = Split-Path $installDir
mkdir -force $installDir -ea 0 | out-null
}
$params = @{
packageName = 'python3'
fileType = 'EXE'
silentArgs = '/quiet InstallAllUsers=1 PrependPath=1 TargetDir="{0}"' -f $installDir
url = 'https://www.python.org/ftp/python/3.6.2/python-3.6.2.exe'
url64Bit = 'https://www.python.org/ftp/python/3.6.2/python-3.6.2-amd64.exe'
checksum = '13725db4df084dcc1600716cb8cd150300f4420aaf48a2f21ce14b7aad0a2c13'
checksum64 = '0322992c443889dd7435b67a1d9519511f0ec06b5ebbc64c15223922ae966d2e'
checksumType = 'sha256'
checksumType64 = 'sha256'
}
# If the package is only intended for the 32-bit version, only pass
# the 32-bit version to the install package function.
if ($packageName -match 32) { $params.Remove('url64Bit'); $params.Remove('checksum64') }
Install-ChocolateyPackage @params
Write-Host "Installed to '$installDir'"
if (($Env:PYTHONHOME -ne $null) -and ($Env:PYTHONHOME -ne $InstallDir)) {
Write-Warning "Environment variable PYTHONHOME points to different version: $Env:PYTHONHOME"
}
Log in or click on link to see number of positives.
- python3.3.6.2.nupkg (a1ba293334a7) - ## / 60
- python-3.6.2-amd64.exe (0322992c4438) - ## / 62
- python-3.6.2.exe (13725db4df08) - ## / 62
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.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Python 3.x 3.10.0-a5 | 991 | Wednesday, February 3, 2021 | Approved |
Python 3.x 3.10.0-a4 | 1395 | Tuesday, January 5, 2021 | Approved |
Python 3.x 3.10.0-a3 | 915 | Tuesday, December 8, 2020 | Approved |
Python 3.x 3.10.0-a2 | 1076 | Tuesday, November 3, 2020 | Approved |
Python 3.x 3.10.0-a1 | 1209 | Tuesday, October 6, 2020 | Approved |
Python 3.x 3.9.2 | 85174 | Friday, February 19, 2021 | Approved |
Python 3.x 3.9.1 | 832481 | Tuesday, December 8, 2020 | Approved |
Python 3.x 3.9.0 | 742507 | Monday, October 5, 2020 | Approved |
Python 3.x 3.9.0-rc2 | 699 | Thursday, September 17, 2020 | Approved |
Python 3.x 3.9.0-rc1 | 1158 | Wednesday, August 12, 2020 | Approved |
Python 3.x 3.9.0-b5 | 775 | Tuesday, July 21, 2020 | Approved |
Python 3.x 3.9.0-b4 | 1025 | Friday, July 3, 2020 | Approved |
Python 3.x 3.9.0-b3 | 768 | Wednesday, June 10, 2020 | Approved |
Python 3.x 3.9.0-b2 | 142 | Tuesday, June 9, 2020 | Approved |
Python 3.x 3.9.0-b1 | 691 | Tuesday, May 19, 2020 | Approved |
Python 3.x 3.9.0-a6 | 674 | Wednesday, April 29, 2020 | Approved |
Python 3.x 3.9.0-a5 | 1081 | Tuesday, March 24, 2020 | Approved |
Python 3.x 3.9.0-a4 | 963 | Wednesday, February 26, 2020 | Approved |
Python 3.x 3.9.0-a3 | 1016 | Saturday, January 25, 2020 | Approved |
Python 3.x 3.9.0-a2-20200110 | 581 | Friday, January 10, 2020 | Approved |
Python 3.x 3.9.0-a2 | 570 | Friday, December 20, 2019 | Approved |
Python 3.x 3.9.0-a1 | 897 | Wednesday, November 20, 2019 | Approved |
Python 3.x 3.8.8 | 99 | Friday, February 19, 2021 | Approved |
Python 3.x 3.8.7 | 1772 | Tuesday, December 22, 2020 | Approved |
Python 3.x 3.8.6 | 136602 | Thursday, September 24, 2020 | Approved |
Python 3.x 3.8.6-rc1 | 83 | Wednesday, September 9, 2020 | Approved |
Python 3.x 3.8.5.20200721 | 641739 | Tuesday, July 21, 2020 | Approved |
Python 3.x 3.8.5 | 98565 | Monday, July 20, 2020 | Approved |
Python 3.x 3.8.4 | 76124 | Tuesday, July 14, 2020 | Approved |
Python 3.x 3.8.4-rc1 | 73 | Friday, July 3, 2020 | Approved |
Python 3.x 3.8.3 | 588032 | Thursday, May 14, 2020 | Approved |
Python 3.x 3.8.3-rc1 | 419 | Thursday, April 30, 2020 | Approved |
Python 3.x 3.8.2 | 545087 | Wednesday, February 26, 2020 | Approved |
Python 3.x 3.8.1.20200110 | 157529 | Friday, January 10, 2020 | Approved |
Python 3.x 3.8.1 | 71833 | Thursday, December 19, 2019 | Approved |
Python 3.x 3.8.0 | 176435 | Tuesday, October 15, 2019 | Approved |
Python 3.x 3.8.0-rc1 | 391 | Friday, October 4, 2019 | Approved |
Python 3.x 3.8.0-b4 | 947 | Friday, August 30, 2019 | Approved |
Python 3.x 3.8.0-b3 | 705 | Tuesday, July 30, 2019 | Approved |
Python 3.x 3.8.0-b2 | 513 | Friday, July 5, 2019 | Approved |
Python 3.x 3.8.0-b1 | 885 | Wednesday, June 5, 2019 | Approved |
Python 3.x 3.8.0-a4 | 715 | Tuesday, May 7, 2019 | Approved |
Python 3.x 3.8.0-a3 | 809 | Tuesday, March 26, 2019 | Approved |
Python 3.x 3.8.0-a2 | 686 | Tuesday, February 26, 2019 | Approved |
Python 3.x 3.8.0-a1 | 500 | Friday, February 8, 2019 | Approved |
Python 3.x 3.7.9 | 17005 | Tuesday, August 18, 2020 | Approved |
Python 3.x 3.7.8 | 4803 | Monday, June 29, 2020 | Approved |
Python 3.x 3.7.7 | 13472 | Tuesday, March 10, 2020 | Approved |
Python 3.x 3.7.6.20200110 | 7706 | Friday, January 10, 2020 | Approved |
Python 3.x 3.7.6 | 58445 | Friday, December 20, 2019 | Approved |
Python 3.x 3.7.5 | 51843 | Thursday, October 17, 2019 | Approved |
Python 3.x 3.7.4 | 263841 | Tuesday, July 9, 2019 | Approved |
Python 3.x 3.7.3 | 220780 | Tuesday, March 26, 2019 | Approved |
Python 3.x 3.7.2 | 152360 | Monday, December 24, 2018 | Approved |
Python 3.x 3.7.2-rc1 | 291 | Wednesday, December 12, 2018 | Approved |
Python 3.x 3.7.1 | 178865 | Saturday, October 20, 2018 | Approved |
Python 3.x 3.7.1-rc2 | 270 | Sunday, October 14, 2018 | Approved |
Python 3.x 3.7.1-rc1 | 597 | Thursday, September 27, 2018 | Approved |
Python 3.x 3.7.0 | 213396 | Thursday, June 28, 2018 | Approved |
Python 3.x 3.7.0-rc1 | 395 | Wednesday, June 13, 2018 | Approved |
Python 3.x 3.7.0-b5 | 418 | Thursday, May 31, 2018 | Approved |
Python 3.x 3.7.0-b4 | 588 | Thursday, May 3, 2018 | Approved |
Python 3.x 3.7.0-b3 | 595 | Friday, March 30, 2018 | Approved |
Python 3.x 3.7.0-b2 | 600 | Wednesday, February 28, 2018 | Approved |
Python 3.x 3.7.0-b1 | 596 | Thursday, February 1, 2018 | Approved |
Python 3.x 3.7.0-a4-20180116 | 482 | Tuesday, January 16, 2018 | Approved |
Python 3.x 3.7.0-a4 | 390 | Tuesday, January 9, 2018 | Approved |
Python 3.x 3.7.0-a3 | 597 | Wednesday, December 6, 2017 | Approved |
Python 3.x 3.7.0-a2 | 542 | Thursday, November 9, 2017 | Approved |
Python 3.x 3.6.8 | 106093 | Tuesday, December 25, 2018 | Approved |
Python 3.x 3.6.8-rc1 | 896 | Wednesday, December 12, 2018 | Approved |
Python 3.x 3.6.7 | 34186 | Saturday, October 20, 2018 | Approved |
Python 3.x 3.6.7-rc2 | 202 | Sunday, October 14, 2018 | Approved |
Python 3.x 3.6.7-rc1 | 168 | Thursday, September 27, 2018 | Approved |
Python 3.x 3.6.6 | 54272 | Thursday, June 28, 2018 | Approved |
Python 3.x 3.6.6-rc1 | 253 | Wednesday, June 13, 2018 | Approved |
Python 3.x 3.6.5 | 86243 | Thursday, March 29, 2018 | Approved |
Python 3.x 3.6.5-rc1 | 331 | Wednesday, March 14, 2018 | Approved |
Python 3.x 3.6.4.20180116 | 42384 | Tuesday, January 16, 2018 | Approved |
Python 3.x 3.6.4 | 20496 | Tuesday, December 19, 2017 | Approved |
Python 3.x 3.6.4-rc1 | 317 | Wednesday, December 6, 2017 | Approved |
Python 3.x 3.6.3 | 192937 | Wednesday, October 4, 2017 | Approved |
Python 3.x 3.6.2 | 33430 | Monday, July 17, 2017 | Approved |
Python 3.x 3.6.1 | 33156 | Wednesday, March 22, 2017 | Approved |
Python 3.x 3.6.0 | 32085 | Friday, December 23, 2016 | Approved |
Python 3.x 3.5.4.20200110 | 2314 | Friday, January 10, 2020 | Approved |
Python 3.x 3.5.4 | 21821 | Thursday, November 9, 2017 | Approved |
Python 3.x 3.5.2.20161029 | 25273 | Saturday, October 29, 2016 | Approved |
Python 3.x 3.5.2 | 5926 | Tuesday, October 4, 2016 | Approved |
Python 3.x 3.5.1.20161002 | 13719 | Sunday, October 2, 2016 | Approved |
Python 3.x 3.5.1 | 33017 | Monday, December 7, 2015 | Approved |
Python 3.x 3.5.0.20151010 | 5832 | Saturday, October 10, 2015 | Approved |
Python 3.x 3.5.0 | 960 | Saturday, October 10, 2015 | Approved |
Python 3.x 3.4.4.20200110 | 1216 | Friday, January 10, 2020 | Approved |
Python 3.x 3.4.4.20180111 | 6838 | Thursday, January 11, 2018 | Approved |
Python 3.x 3.4.4 | 1867 | Thursday, November 9, 2017 | Approved |
Python 3.x 3.4.3.20150501 | 5459 | Friday, May 1, 2015 | Approved |
Python 3.x 3.4.3 | 1933 | Wednesday, February 25, 2015 | Approved |
Python 3.x 3.4.2 | 2197 | Wednesday, October 8, 2014 | Approved |
Python 3.x 3.4.1.20141004 | 462 | Saturday, October 4, 2014 | Approved |
Python 3.x 3.4.1.20140610 | 1392 | Tuesday, June 10, 2014 | Approved |
Python 3.x 3.4.1.20140608 | 484 | Saturday, June 7, 2014 | Approved |
Python 3.x 3.4.1.20140607 | 409 | Saturday, June 7, 2014 | Approved |
Python 3.x 3.4.1 | 1047 | Tuesday, May 20, 2014 | Approved |
Python 3.x 3.4.0.20140512 | 511 | Monday, May 12, 2014 | Approved |
Python 3.4.0 | 915 | Monday, March 17, 2014 | Approved |
Python 3.3.5 | 1210 | Sunday, March 9, 2014 | Approved |
Python 3.x 3.3.4 | 825 | Thursday, November 9, 2017 | Approved |
Python 3 3.3.3 | 1204 | Sunday, November 24, 2013 | Approved |
Python 3 3.3.2 | 986 | Saturday, June 15, 2013 | Approved |
Python 3.x 3.2.5.20200110 | 151 | Friday, January 10, 2020 | Approved |
Python 3.x 3.2.5 | 350 | Thursday, November 9, 2017 | Approved |
Python 3.x 3.1.4.20200110 | 156 | Friday, January 10, 2020 | Approved |
Python 3.x 3.1.4 | 309 | Thursday, November 9, 2017 | Approved |
Python 3.x 3.0.1.20200110 | 157 | Friday, January 10, 2020 | Approved |
Python 3.x 3.0.1 | 500 | Thursday, November 9, 2017 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Python 3.x and the Python 3.x 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 Python 3.x, 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.