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...

Downloads:
139,073
Downloads of v 2018.1.2:
1,022
Last Update:
26 Apr 2018
Package Maintainer(s):
Software Author(s):
- Jetbrains s.r.o.
Tags:
PyCharm jetbrains python IDE- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

JetBrains PyCharm (Install)
This is not the latest version of JetBrains PyCharm (Install) available.
- Software Specific:
- Software Site
- 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:
139,073
Downloads of v 2018.1.2:
1,022
Maintainer(s):
Software Author(s):
- Jetbrains s.r.o.
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.
JetBrains PyCharm (Install) 2018.1.2
This is not the latest version of JetBrains PyCharm (Install) available.
All Checks are Passing
2 Passing Test
To install JetBrains PyCharm (Install), run the following command from the command line or from PowerShell:
To upgrade JetBrains PyCharm (Install), run the following command from the command line or from PowerShell:
To uninstall JetBrains 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://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=2018.1.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 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: 2018.1.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 'pycharm-community' do
action :install
version '2018.1.2'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: pycharm-community,
Version: 2018.1.2,
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 = '2018.1.2'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'pycharm-community':
provider => 'chocolatey',
ensure => '2018.1.2',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install pycharm-community version="2018.1.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 26 Apr 2018.
PyCharm Community Edition
The "python" directory in the source repository contains the source code of PyCharm Community Edition and the Python plugin for
IntelliJ IDEA Community Edition.
Building and Running
The code is part of the main IntelliJ IDEA Community Edition project and is compiled together with the rest of the codebase.
To run PyCharm Community Edition, please use the provided run configuration "PyCharm Community Edition". To run IntelliJ IDEA with
the Python plugin, please use the "IDEA with Python plugin" run configuration.
To run the test suite, use the built-in JUnit test runner and run all tests in the "python-community-tests" module.
Building from the Command Line
To build the distribution archive of PyCharm Community Edition, execute build.xml Ant build script in this directory. The results of the
build execution can be found at out/artifacts.
Building the Python Plugin
To build the Python plugin for IntelliJ IDEA Community Edition:
Download the .tar.gz distribution of the most recent EAP or release build of IntelliJ IDEA Community Edition;
Run the following command:
ant -Didea.path=<download path> -Didea.build.number=<build number of the build you're using> plugin
The .zip file of the built plugin will be placed at distCE/python-community-<branch number>.SNAPSHOT.zip
$link = "C:\Users\" + $env:UserName + "\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\JetBrains\JetBrains PyCharm Community Edition*.lnk" # Fuzzy file name for program shortcuts
$destinationFolder = "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\JetBrains"
if (!(Test-Path -path $destinationFolder)) {
New-Item $destinationFolder -Type Directory # If directory doesn't exists create it.
}
Copy-Item $link -Destination $destinationFolder # Copy shortcut left by last installer
Write-Host "Added Pycharm-community start menu shortcut to all users!"
$ErrorActionPreference = 'Stop'; # stop on all errors
$packageArgs = @{
PackageName = $env:ChocolateyPackageName
softwareName = "JetBrains PyCharm Community Edition*"
FileType = 'exe'
Silent = '/S'
}
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']
if ($key.Count -eq 1) {
$key | % {
$packageArgs['file'] = "$($_.UninstallString)"
Get-Process PyCharm* | % { $_.CloseMainWindow() }
Uninstall-ChocolateyPackage @packageArgs
$uninstalled = $true
}
} elseif ($key.Count -eq 0) {
Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
Write-Warning "$($key.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$key | % {Write-Warning "- $($_.DisplayName)"}
}
if ($uninstalled) { # Remove leftover shortcut
& ((Split-Path $MyInvocation.MyCommand.Path) + "\removeShortcuts.ps1")
}
& ((Split-Path $MyInvocation.MyCommand.Path) + "\removeShortcuts.ps1") # In case the old uninstaller (from a previous build) didn't implement this method ... run it again. It is quick so speed isn't much of an issue.
$packageArgs = @{
PackageName = $env:ChocolateyPackageName
FileType = 'exe'
Silent = '/S'
ChecksumType = 'sha256'
Checksum = 'e9d3898551ff3064a370dc4009e673d71fc262134e31a026e41dce5171b02d43'
Url = 'https://download.jetbrains.com/python/pycharm-community-2018.1.2.exe'
softwareName = "JetBrains PyCharm Community Edition*"
validExitCodes= @(0)
}
Install-ChocolateyPackage @packageArgs
& ((Split-Path $MyInvocation.MyCommand.Path) + "\addShortcuts.ps1")
& ((Split-Path $MyInvocation.MyCommand.Path) + "\removeShortcuts.ps1") # In case the old uninstaller (from a previous build) didn't implement this method ... run it again. It is quick so speed isn't much of an issue.
$packageArgs = @{
PackageName = $env:ChocolateyPackageName
FileType = 'exe'
Silent = '/S'
ChecksumType = 'sha256'
Checksum = '{{checksum}}'
Url = '{{download}}'
softwareName = "JetBrains PyCharm Community Edition*"
validExitCodes= @(0)
}
Install-ChocolateyPackage @packageArgs
& ((Split-Path $MyInvocation.MyCommand.Path) + "\addShortcuts.ps1")
$ErrorActionPreference = 'Stop'; # stop on all errors
$packageArgs = @{
PackageName = $env:ChocolateyPackageName
softwareName = "JetBrains PyCharm Community Edition*"
FileType = 'exe'
Silent = '/S'
}
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']
if ($key.Count -eq 1) {
$key | % {
$packageArgs['file'] = "$($_.UninstallString)"
Get-Process PyCharm* | % { $_.CloseMainWindow() }
Uninstall-ChocolateyPackage @packageArgs
$uninstalled = $true
}
} elseif ($key.Count -eq 0) {
Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
Write-Warning "$($key.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$key | % {Write-Warning "- $($_.DisplayName)"}
}
if ($uninstalled) { # Remove leftover shortcut
& ((Split-Path $MyInvocation.MyCommand.Path) + "\removeShortcuts.ps1")
}
$ErrorActionPreference = 'Stop'; # stop on all errors
$packageArgs = @{
PackageName = $env:ChocolateyPackageName
softwareName = "JetBrains PyCharm Community Edition*"
FileType = 'exe'
Silent = '/S'
}
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']
if ($key.Count -eq 1) {
$key | % {
$packageArgs['file'] = "$($_.UninstallString)"
Get-Process PyCharm* | % { $_.CloseMainWindow() }
Uninstall-ChocolateyPackage @packageArgs
$uninstalled = $true
}
} elseif ($key.Count -eq 0) {
Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
Write-Warning "$($key.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$key | % {Write-Warning "- $($_.DisplayName)"}
}
if ($uninstalled) { # Remove leftover shortcut
& ((Split-Path $MyInvocation.MyCommand.Path) + "\removeShortcuts.ps1")
}
$users = Get-ChildItem C:\Users # Get the list of directories in the c:\users directory
foreach ($user in $users) {
# Loop through all the users folders
if ($user.Name -ne "Public") {
$leftOver = "C:\Users\" + $user.Name + "\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\JetBrains\JetBrains PyCharm Community Edition*" # Fuzzy file name for program shortcuts
if (Test-Path $leftOver) {
Remove-Item $leftOver -Recurse -Force # Fuzzy remove shortcuts left by last uninstaller
}
}
}
$all_users = "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\JetBrains\JetBrains PyCharm Community Edition*"
if (Test-Path $all_users) {
Remove-Item $all_users -Recurse -Force # Fuzzy remove shortcuts left by last uninstaller
}
Write-Host "Deleted old Pycharm-community start menu shortcuts from all users!"
Log in or click on link to see number of positives.
- PyCharm-community.2018.1.2.nupkg (35338cd7999e) - ## / 60
- pycharm-community-2018.1.2.exe (e9d3898551ff) - ## / 64
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) 2020.3.2 | 2495 | Wednesday, December 30, 2020 | Approved |
JetBrains PyCharm (Install) 2020.3.1 | 1201 | Monday, December 21, 2020 | Approved |
JetBrains PyCharm (Install) 2020.3 | 2367 | Wednesday, December 2, 2020 | Approved |
JetBrains PyCharm (Install) 2020.2.5 | 62 | Wednesday, December 2, 2020 | Approved |
JetBrains PyCharm (Install) 2020.2.4 | 1203 | Thursday, November 26, 2020 | Approved |
JetBrains PyCharm (Install) 2020.2.3 | 3844 | Wednesday, October 7, 2020 | Approved |
JetBrains PyCharm (Install) 2020.2.2 | 2236 | Thursday, September 17, 2020 | Approved |
JetBrains PyCharm (Install) 2020.2.1 | 2416 | Thursday, August 27, 2020 | Approved |
JetBrains PyCharm (Install) 2020.2 | 2603 | Wednesday, July 29, 2020 | Approved |
JetBrains PyCharm (Install) 2020.1.4 | 1021 | Wednesday, July 22, 2020 | Approved |
JetBrains PyCharm (Install) 2020.1.3 | 1767 | Thursday, July 9, 2020 | Approved |
JetBrains PyCharm (Install) 2020.1.2 | 2778 | Wednesday, June 3, 2020 | Approved |
JetBrains PyCharm (Install) 2020.1.1 | 2435 | Thursday, May 7, 2020 | Approved |
JetBrains PyCharm (Install) 2020.1 | 2457 | Wednesday, April 8, 2020 | Approved |
JetBrains PyCharm (Install) 2019.3.4 | 1284 | Wednesday, March 18, 2020 | Approved |
JetBrains PyCharm (Install) 2019.3.3 | 3483 | Friday, February 7, 2020 | Approved |
JetBrains PyCharm (Install) 2019.3.2 | 1662 | Wednesday, January 22, 2020 | Approved |
JetBrains PyCharm (Install) 2019.3.1 | 2553 | Thursday, December 19, 2019 | Approved |
JetBrains PyCharm (Install) 2019.3 | 1872 | Monday, December 2, 2019 | Approved |
JetBrains PyCharm (Install) 2019.2.5 | 1761 | Tuesday, November 19, 2019 | Approved |
JetBrains PyCharm (Install) 2019.2.4 | 1997 | Friday, November 1, 2019 | Approved |
JetBrains PyCharm (Install) 2019.2.3 | 3618 | Wednesday, September 25, 2019 | Approved |
JetBrains PyCharm (Install) 2019.2.2 | 1786 | Wednesday, September 11, 2019 | Approved |
JetBrains PyCharm (Install) 2019.2.1 | 2111 | Friday, August 23, 2019 | Approved |
JetBrains PyCharm (Install) 2019.2 | 2555 | Wednesday, July 24, 2019 | Approved |
JetBrains PyCharm (Install) 2019.1.3 | 3476 | Thursday, May 30, 2019 | Approved |
JetBrains PyCharm (Install) 2019.1.2 | 1790 | Wednesday, May 8, 2019 | Approved |
JetBrains PyCharm (Install) 2019.1.1 | 2197 | Wednesday, April 3, 2019 | Approved |
JetBrains PyCharm (Install) 2019.1 | 862 | Wednesday, March 27, 2019 | Approved |
JetBrains PyCharm (Install) 2018.3.5 | 2001 | Wednesday, February 27, 2019 | Approved |
JetBrains PyCharm (Install) 2018.3.4 | 1782 | Wednesday, January 30, 2019 | Approved |
JetBrains PyCharm (Install) 2018.3.3 | 1478 | Thursday, January 10, 2019 | Approved |
JetBrains PyCharm (Install) 2018.3.2 | 1311 | Wednesday, December 19, 2018 | Approved |
JetBrains PyCharm (Install) 2018.3.1 | 1043 | Wednesday, December 5, 2018 | Approved |
JetBrains PyCharm (Install) 2018.3 | 469 | Monday, December 3, 2018 | Approved |
JetBrains PyCharm (Install) 2018.2.5 | 1209 | Thursday, November 15, 2018 | Approved |
JetBrains PyCharm (Install) 2018.2.4 | 2598 | Saturday, September 22, 2018 | Approved |
JetBrains PyCharm (Install) 2018.2.3 | 2036 | Friday, September 7, 2018 | Approved |
JetBrains PyCharm (Install) 2018.2.2 | 1425 | Thursday, August 23, 2018 | Approved |
JetBrains PyCharm (Install) 2018.2.1 | 1280 | Friday, August 10, 2018 | Approved |
JetBrains PyCharm (Install) 2018.2 | 1187 | Thursday, July 26, 2018 | Approved |
JetBrains PyCharm (Install) 2018.1.4 | 1904 | Friday, June 1, 2018 | Approved |
JetBrains PyCharm (Install) 2018.1.3 | 893 | Thursday, May 17, 2018 | Approved |
JetBrains PyCharm (Install) 2018.1.2 | 1022 | Thursday, April 26, 2018 | Approved |
JetBrains PyCharm (Install) 2018.1.1 | 905 | Wednesday, April 11, 2018 | Approved |
JetBrains PyCharm (Install) 2018.1 | 849 | Thursday, March 29, 2018 | Approved |
JetBrains PyCharm (Install) 2017.3.4 | 1158 | Thursday, March 8, 2018 | Approved |
PyCharm (Install) 2017.3.3.20170124 | 1460 | Wednesday, January 24, 2018 | Approved |
PyCharm (Install) 2017.2.4 | 2279 | Thursday, November 2, 2017 | Approved |
PyCharm (Install) 2017.2.3.1 | 1881 | Wednesday, September 13, 2017 | Approved |
PyCharm (Install) 2017.2.3 | 346 | Wednesday, September 13, 2017 | Approved |
PyCharm (Install) 2017.2.2 | 848 | Monday, August 28, 2017 | Approved |
PyCharm (Install) 2017.2.1 | 2003 | Tuesday, August 15, 2017 | Approved |
PyCharm (Install) 2017.2 | 4352 | Friday, July 28, 2017 | Approved |
PyCharm (Install) 2017.1.5 | 4100 | Thursday, July 13, 2017 | Approved |
PyCharm (Install) 2017.1.4 | 5669 | Thursday, June 22, 2017 | Approved |
PyCharm (Install) 2017.1.3 | 3787 | Friday, June 9, 2017 | Approved |
PyCharm (Install) 2017.1.2 | 7337 | Friday, April 28, 2017 | Approved |
PyCharm (Install) 2017.1.1 | 586 | Thursday, April 20, 2017 | Approved |
PyCharm (Install) 2017.1 | 1013 | Friday, March 24, 2017 | Approved |
PyCharm (Install) 2016.3.3 | 536 | Saturday, March 18, 2017 | Approved |
PyCharm (Install) 2016.3.2 | 2873 | Saturday, December 31, 2016 | Approved |
PyCharm (Install) 2016.3.1 | 508 | Monday, December 19, 2016 | Approved |
PyCharm (Install) 2016.3.0 | 635 | Tuesday, November 29, 2016 | Approved |
PyCharm (Install) 2016.2.3 | 821 | Monday, October 17, 2016 | Approved |
PyCharm (Install) 2016.2.2 | 857 | Friday, August 26, 2016 | Approved |
PyCharm (Install) 2016.2.1 | 533 | Friday, August 12, 2016 | Approved |
PyCharm (Install) 2016.2.0 | 656 | Friday, July 22, 2016 | Approved |
PyCharm (Install) 2016.1.4 | 366 | Wednesday, June 1, 2016 | Approved |
PyCharm (Install) 2016.1.2 | 444 | Monday, April 18, 2016 | Approved |
PyCharm (Install) 2016.1.1 | 312 | Monday, April 18, 2016 | Approved |
PyCharm (Install) 2016.1.0 | 607 | Friday, March 25, 2016 | Approved |
PyCharm (Install) 5.0.4 | 796 | Sunday, January 31, 2016 | Approved |
PyCharm (Install) 5.0.3 | 535 | Monday, January 11, 2016 | Approved |
PyCharm (Install) 5.0.2 | 510 | Monday, January 11, 2016 | Approved |
PyCharm (Install) 4.0.6 | 1392 | Monday, April 6, 2015 | Approved |
PyCharm (Install) 4.0.5 | 541 | Saturday, March 14, 2015 | Approved |
PyCharm (Install) 4.0.4 | 339 | Wednesday, March 11, 2015 | Approved |
PyCharm (Install) 4.0.3 | 569 | Wednesday, December 17, 2014 | Approved |
PyCharm (Install) 4.0 | 608 | Wednesday, November 26, 2014 | Approved |
PyCharm (Install) 3.4.1 | 870 | Wednesday, July 30, 2014 | Approved |
PyCharm (Install) 3.1 | 674 | Friday, February 14, 2014 | Approved |
PyCharm (Install) 3.0.0.0 | 545 | Thursday, September 26, 2013 | Approved |
JetBrains s.r.o.
This package has no dependencies.
Ground Rules:
- This discussion is only about JetBrains PyCharm (Install) and the JetBrains 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 JetBrains 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.