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:
151,204
Downloads of v 2016.1.1:
320
Last Update:
18 Apr 2016
Package Maintainer(s):
Software Author(s):
- Jetbrains
Tags:
PyCharm jetbrains python IDE- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

PyCharm (Install)
This is not the latest version of PyCharm (Install) available.
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
151,204
Downloads of v 2016.1.1:
320
Maintainer(s):
Software Author(s):
- Jetbrains
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.
PyCharm (Install) 2016.1.1
This is not the latest version of PyCharm (Install) available.
All Checks are Passing
2 Passing Test
To install PyCharm (Install), run the following command from the command line or from PowerShell:
To upgrade PyCharm (Install), run the following command from the command line or from PowerShell:
To uninstall PyCharm (Install), 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://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
choco download pycharm-community --internalize --version=2016.1.1 --source=https://community.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://community.chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade pycharm-community -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 pycharm-community -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 pycharm-community installed
win_chocolatey:
name: pycharm-community
state: present
version: 2016.1.1
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'pycharm-community' do
action :install
version '2016.1.1'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: pycharm-community,
Version: 2016.1.1,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller pycharm-community
{
Name = 'pycharm-community'
Ensure = 'Present'
Version = '2016.1.1'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'pycharm-community':
provider => 'chocolatey',
ensure => '2016.1.1',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install pycharm-community version="2016.1.1" 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.
This package was approved by moderator digitaldrummerj on 20 Apr 2016.
Open source edition of the intelligent Python IDE with unique code assistance and analysis, for productive Python development on all levels.
$packageName = 'PyCharm-community'
$installerType = 'EXE'
$url = "https://download.jetbrains.com/python/pycharm-community-2016.1.1.exe"
$url64 = "https://download.jetbrains.com/python/pycharm-community-2016.1.1.exe"
$validExitCodes = @(0)
$silentArgs = '/S'
Install-ChocolateyPackage "$packageName" "$installerType" "$silentArgs" "$url" "$url64" -validExitCodes $validExitCodes
Log in or click on link to see number of positives.
- PyCharm-community.2016.1.1.nupkg (2ffe76950e7b) - ## / 57
- pycharm-community-2016.1.1.exe (03c628417cea) - ## / 57
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 |
---|---|---|---|
JetBrains PyCharm (Install) 2021.1 | 2125 | Wednesday, April 7, 2021 | Approved |
JetBrains PyCharm (Install) 2020.3.5 | 1179 | Friday, March 26, 2021 | Approved |
JetBrains PyCharm (Install) 2020.3.4 | 2365 | Wednesday, March 17, 2021 | Approved |
JetBrains PyCharm (Install) 2020.3.3 | 4701 | Wednesday, January 27, 2021 | Approved |
JetBrains PyCharm (Install) 2020.3.2 | 3259 | Wednesday, December 30, 2020 | Approved |
JetBrains PyCharm (Install) 2020.3.1 | 1213 | Monday, December 21, 2020 | Approved |
JetBrains PyCharm (Install) 2020.3 | 2382 | Wednesday, December 2, 2020 | Approved |
JetBrains PyCharm (Install) 2020.2.5 | 73 | Wednesday, December 2, 2020 | Approved |
JetBrains PyCharm (Install) 2020.2.4 | 1218 | Thursday, November 26, 2020 | Approved |
JetBrains PyCharm (Install) 2020.2.3 | 3860 | Wednesday, October 7, 2020 | Approved |
JetBrains PyCharm (Install) 2020.2.2 | 2244 | Thursday, September 17, 2020 | Approved |
JetBrains PyCharm (Install) 2020.2.1 | 2426 | Thursday, August 27, 2020 | Approved |
JetBrains PyCharm (Install) 2020.2 | 2625 | Wednesday, July 29, 2020 | Approved |
JetBrains PyCharm (Install) 2020.1.4 | 1034 | Wednesday, July 22, 2020 | Approved |
JetBrains PyCharm (Install) 2020.1.3 | 1778 | Thursday, July 9, 2020 | Approved |
JetBrains PyCharm (Install) 2020.1.2 | 2798 | Wednesday, June 3, 2020 | Approved |
JetBrains PyCharm (Install) 2020.1.1 | 2444 | Thursday, May 7, 2020 | Approved |
JetBrains PyCharm (Install) 2020.1 | 2465 | Wednesday, April 8, 2020 | Approved |
JetBrains PyCharm (Install) 2019.3.4 | 1298 | Wednesday, March 18, 2020 | Approved |
JetBrains PyCharm (Install) 2019.3.3 | 3494 | Friday, February 7, 2020 | Approved |
JetBrains PyCharm (Install) 2019.3.2 | 1677 | Wednesday, January 22, 2020 | Approved |
JetBrains PyCharm (Install) 2019.3.1 | 2562 | Thursday, December 19, 2019 | Approved |
JetBrains PyCharm (Install) 2019.3 | 1882 | Monday, December 2, 2019 | Approved |
JetBrains PyCharm (Install) 2019.2.5 | 1770 | Tuesday, November 19, 2019 | Approved |
JetBrains PyCharm (Install) 2019.2.4 | 2005 | Friday, November 1, 2019 | Approved |
JetBrains PyCharm (Install) 2019.2.3 | 3628 | Wednesday, September 25, 2019 | Approved |
JetBrains PyCharm (Install) 2019.2.2 | 1802 | Wednesday, September 11, 2019 | Approved |
JetBrains PyCharm (Install) 2019.2.1 | 2120 | Friday, August 23, 2019 | Approved |
JetBrains PyCharm (Install) 2019.2 | 2568 | Wednesday, July 24, 2019 | Approved |
JetBrains PyCharm (Install) 2019.1.3 | 3486 | Thursday, May 30, 2019 | Approved |
JetBrains PyCharm (Install) 2019.1.2 | 1805 | Wednesday, May 8, 2019 | Approved |
JetBrains PyCharm (Install) 2019.1.1 | 2226 | Wednesday, April 3, 2019 | Approved |
JetBrains PyCharm (Install) 2019.1 | 873 | Wednesday, March 27, 2019 | Approved |
JetBrains PyCharm (Install) 2018.3.5 | 2013 | Wednesday, February 27, 2019 | Approved |
JetBrains PyCharm (Install) 2018.3.4 | 1792 | Wednesday, January 30, 2019 | Approved |
JetBrains PyCharm (Install) 2018.3.3 | 1488 | Thursday, January 10, 2019 | Approved |
JetBrains PyCharm (Install) 2018.3.2 | 1320 | Wednesday, December 19, 2018 | Approved |
JetBrains PyCharm (Install) 2018.3.1 | 1047 | Wednesday, December 5, 2018 | Approved |
JetBrains PyCharm (Install) 2018.3 | 485 | Monday, December 3, 2018 | Approved |
JetBrains PyCharm (Install) 2018.2.5 | 1221 | Thursday, November 15, 2018 | Approved |
JetBrains PyCharm (Install) 2018.2.4 | 2610 | Saturday, September 22, 2018 | Approved |
JetBrains PyCharm (Install) 2018.2.3 | 2056 | Friday, September 7, 2018 | Approved |
JetBrains PyCharm (Install) 2018.2.2 | 1438 | Thursday, August 23, 2018 | Approved |
JetBrains PyCharm (Install) 2018.2.1 | 1290 | Friday, August 10, 2018 | Approved |
JetBrains PyCharm (Install) 2018.2 | 1202 | Thursday, July 26, 2018 | Approved |
JetBrains PyCharm (Install) 2018.1.4 | 1926 | Friday, June 1, 2018 | Approved |
JetBrains PyCharm (Install) 2018.1.3 | 903 | Thursday, May 17, 2018 | Approved |
JetBrains PyCharm (Install) 2018.1.2 | 1035 | Thursday, April 26, 2018 | Approved |
JetBrains PyCharm (Install) 2018.1.1 | 918 | Wednesday, April 11, 2018 | Approved |
JetBrains PyCharm (Install) 2018.1 | 862 | Thursday, March 29, 2018 | Approved |
JetBrains PyCharm (Install) 2017.3.4 | 1172 | Thursday, March 8, 2018 | Approved |
PyCharm (Install) 2017.3.3.20170124 | 1471 | Wednesday, January 24, 2018 | Approved |
PyCharm (Install) 2017.2.4 | 2300 | Thursday, November 2, 2017 | Approved |
PyCharm (Install) 2017.2.3.1 | 1891 | Wednesday, September 13, 2017 | Approved |
PyCharm (Install) 2017.2.3 | 360 | Wednesday, September 13, 2017 | Approved |
PyCharm (Install) 2017.2.2 | 865 | Monday, August 28, 2017 | Approved |
PyCharm (Install) 2017.2.1 | 2020 | Tuesday, August 15, 2017 | Approved |
PyCharm (Install) 2017.2 | 4371 | Friday, July 28, 2017 | Approved |
PyCharm (Install) 2017.1.5 | 4110 | Thursday, July 13, 2017 | Approved |
PyCharm (Install) 2017.1.4 | 5678 | Thursday, June 22, 2017 | Approved |
PyCharm (Install) 2017.1.3 | 3796 | Friday, June 9, 2017 | Approved |
PyCharm (Install) 2017.1.2 | 7347 | Friday, April 28, 2017 | Approved |
PyCharm (Install) 2017.1.1 | 596 | Thursday, April 20, 2017 | Approved |
PyCharm (Install) 2017.1 | 1031 | Friday, March 24, 2017 | Approved |
PyCharm (Install) 2016.3.3 | 547 | Saturday, March 18, 2017 | Approved |
PyCharm (Install) 2016.3.2 | 2889 | Saturday, December 31, 2016 | Approved |
PyCharm (Install) 2016.3.1 | 523 | Monday, December 19, 2016 | Approved |
PyCharm (Install) 2016.3.0 | 642 | Tuesday, November 29, 2016 | Approved |
PyCharm (Install) 2016.2.3 | 828 | Monday, October 17, 2016 | Approved |
PyCharm (Install) 2016.2.2 | 868 | Friday, August 26, 2016 | Approved |
PyCharm (Install) 2016.2.1 | 544 | Friday, August 12, 2016 | Approved |
PyCharm (Install) 2016.2.0 | 664 | Friday, July 22, 2016 | Approved |
PyCharm (Install) 2016.1.4 | 375 | Wednesday, June 1, 2016 | Approved |
PyCharm (Install) 2016.1.2 | 454 | Monday, April 18, 2016 | Approved |
PyCharm (Install) 2016.1.1 | 320 | Monday, April 18, 2016 | Approved |
PyCharm (Install) 2016.1.0 | 619 | Friday, March 25, 2016 | Approved |
PyCharm (Install) 5.0.4 | 812 | Sunday, January 31, 2016 | Approved |
PyCharm (Install) 5.0.3 | 544 | Monday, January 11, 2016 | Approved |
PyCharm (Install) 5.0.2 | 524 | Monday, January 11, 2016 | Approved |
PyCharm (Install) 4.0.6 | 1398 | Monday, April 6, 2015 | Approved |
PyCharm (Install) 4.0.5 | 545 | Saturday, March 14, 2015 | Approved |
PyCharm (Install) 4.0.4 | 347 | Wednesday, March 11, 2015 | Approved |
PyCharm (Install) 4.0.3 | 578 | Wednesday, December 17, 2014 | Approved |
PyCharm (Install) 4.0 | 613 | Wednesday, November 26, 2014 | Approved |
PyCharm (Install) 3.4.1 | 879 | Wednesday, July 30, 2014 | Approved |
PyCharm (Install) 3.1 | 694 | Friday, February 14, 2014 | Approved |
PyCharm (Install) 3.0.0.0 | 554 | Thursday, September 26, 2013 | Approved |
Ground Rules:
- This discussion is only about PyCharm (Install) and the PyCharm (Install) 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 PyCharm (Install), 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.