- package: tis-pycharm-community
- name: PyCharm Community
- version: 2025.2.0.1-3
- categories: Development
- maintainer: WAPT Team,Jimmy PELÉ,Pierre COSSON,Tranquil IT
- editor: JetBrains
- licence: Freemium
- locale: all
- target_os: windows
- impacted_process: pycharm64.exe,pycharm.exe
- architecture: x64
- signature_date:
- size: 797.97 Mo
- installed_size: 697.25 Mo
- homepage : https://www.jetbrains.com/pycharm/
- conflicts :
package : tis-pycharm-community
version : 2025.2.0.1-3
architecture : x64
section : base
priority : optional
name : PyCharm Community
categories : Development
maintainer : WAPT Team,Jimmy PELÉ,Pierre COSSON,Tranquil IT
description : PyCharm is an integrated development environment (IDE) used in computer programming, specifically for the Python language
depends :
conflicts : tis-pycharm
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.1
sources : https://download.jetbrains.com/python/pycharm-community-2022.2.exe
installed_size : 697249792
impacted_process : pycharm64.exe,pycharm.exe
description_fr : PyCharm est un environnement de développement intégré utilisé pour programmer en Python
description_pl : PyCharm jest zintegrowanym środowiskiem programistycznym (IDE) używanym w programowaniu komputerowym, w szczególności dla języka Python
description_de : PyCharm ist eine integrierte Entwicklungsumgebung (IDE) für die Computerprogrammierung, insbesondere für die Sprache Python
description_es : PyCharm es un entorno de desarrollo integrado (IDE) utilizado en la programación informática, específicamente para el lenguaje Python
description_pt : PyCharm é um ambiente de desenvolvimento integrado (IDE) utilizado na programação de computadores, especificamente para a linguagem Python
description_it : PyCharm è un ambiente di sviluppo integrato (IDE) utilizzato nella programmazione informatica, in particolare per il linguaggio Python
description_nl : PyCharm is een geïntegreerde ontwikkelingsomgeving (IDE) die wordt gebruikt bij computerprogrammering, specifiek voor de taal Python
description_ru : PyCharm - это интегрированная среда разработки (IDE), используемая в компьютерном программировании, в частности, для языка Python
audit_schedule :
editor : JetBrains
keywords : pycharm,ide,integrated,development,environment
licence : Freemium
homepage : https://www.jetbrains.com/pycharm/
package_uuid : 5308a896-84da-4f88-a1dc-e4baf6804be7
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10
max_os_version :
icon_sha256sum : d8e61e0d3d8c4e15ebb79b689f55a3239d4e1d6fde9f867acb9c0b3d2ccee678
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-08-17T17:26:10.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature : wEFaut7k6IqKX8Ue0M88b/Yuq4qqhPRjwH/d12AZiF9iAf3Mc3Ld/6zv66DFx6YKhmFkKsyouIf/vcr4RDOdr8ix1ok+aAOupLLBUSuTq3oa3zGGd2tR7cyJlbVRrZChQEhaQ3YVeW6wrfxOFUSq3MM0gMdlWS2+w4Rms1DxS0pIaXUzAXVR9EjqApTBLDLo8p/MgrePWWOtFSYpWyKBcDc6zZJkYeovmxVNwm9fVjUADNkKiAhBfwVTQLme3A9pKsyYkFWdRnq9qITRPDZz9GW6aWgFgZqEDY1pXR7Oksbir34l4Vv1Byli+PeXRW/2fm5gy8vFSZ4ZqxzrqXmh/w==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
# Specific app values
bin_name = glob.glob("pycharm-community-*.exe")[0]
# Uninstalling older versions of the software
for to_uninstall in installed_softwares("PyCharm Community Edition"):
if Version(to_uninstall["name"].split(" ")[-1]) < Version(control.get_software_version()) or force:
print("Removing: %s (%s)" % (to_uninstall["name"], to_uninstall["version"]))
killalltasks(ensure_list(control.impacted_process))
run(uninstall_cmd(to_uninstall["key"]))
wait_uninstallkey_absent(to_uninstall["key"])
# Installing the package
install_exe_if_needed(
bin_name,
silentflags="/S /CONFIG=silent.conf",
name="PyCharm Community Edition",
accept_returncodes=[0, 3010, 1223],
min_version=control.get_software_version(),
get_version=get_installed_version,
timeout=2000,
)
def get_installed_version(key):
return key["name"].split(" ")[-1]
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import json
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
download_url = json.loads(wgets("https://data.services.jetbrains.com/products/releases?code=PCC&latest=true&type=release",proxies=proxies))['PCC'][0]['downloads']['windows']['link']
version = download_url.split('-')[-1].replace('.exe','')
latest_bin = download_url.split("/")[-1]
# Downloading latest binaries
print("Latest %s version is: %s" % (control.name, version))
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
else:
print("Binary is present: %s" % latest_bin)
# Deleting outdated binaries
remove_outdated_binaries(latest_bin)
# # Checking version from file
# if get_os_name() == "Windows" and "windows" in control.target_os.lower():
# version_from_file = get_version_from_binary(latest_bin)
# if Version(version_from_file, 4) == Version(version, 4):
# print(f"INFO: Binary file version ({version_from_file}) corresponds to online version ({version})")
# else:
# error(f"ERROR: Binary file version ({version_from_file}) do NOT corresponds to online version ({version})")
# Changing version of the package
if Version(version, 4) > Version(control.get_software_version(), 4):
print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
package_updated = True
else:
print("Software version up-to-date (%s)" % Version(version))
control.set_software_version(version)
control.save_control_to_wapt()
# Validating or not update-package-sources
return package_updated
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
00082cb86efc857d06dc3af18c87c511503eefe6b7a08e6477cc4f3acbd177e2 : WAPT/changelog.txt
837db3cfe90d168317ff2fe9eeb3e6922bef288b8f5bc253e74a45018406a65f : WAPT/control
d8e61e0d3d8c4e15ebb79b689f55a3239d4e1d6fde9f867acb9c0b3d2ccee678 : WAPT/icon.png
e9c69afacbe3851ab50cc72c90871da4c32f60fb3c6fd6da0265f8244fb46c24 : luti.json
094f730a791bf6e3261aebbf4771d0c6f9dbac5205ca109eef3c506ab3af9df6 : pycharm-community-2025.2.0.1.exe
cb14fcdccd186dd90a5bb0352d55f363ba95a95194e3ab311694f9636015552c : setup.py
791b8f45636001a6d3eadd870e1f67a1c8bd09f4eaf4a48aac890acb79fe1295 : silent.conf
10900e02f7e765785434c873c7e5aa5df43633e542c4a0cc5da5aa8f46f2e245 : update_package.py
https://blog.jetbrains.com/pycharm/category/announcement/