PyCharm
Paquet d’installation silencieuse pour PyCharm
2025.2.4-4
Development
Development
- package: tis-pycharm
- name: PyCharm
- version: 2025.2.4-4
- categories: Development
- maintainer: WAPT Team,Jimmy PELÉ,Jordan ARNAUD
- editor: JetBrains
- licence: Freemium
- locale: all
- target_os: darwin
- impacted_process: pycharm64,pycharm
- architecture: x64
- signature_date:
- size: 1.33 Go
- installed_size: 697.25 Mo
- homepage : https://www.jetbrains.com/pycharm/
- conflicts :
package : tis-pycharm
version : 2025.2.4-4
architecture : x64
section : base
priority : optional
name : PyCharm
categories : Development
maintainer : WAPT Team,Jimmy PELÉ,Jordan ARNAUD
description : PyCharm is an integrated development environment (IDE) used in computer programming, specifically for the Python language
depends :
conflicts : tis-pycharm-community,tis-pycharm-professional
maturity : PROD
locale : all
target_os : darwin
min_wapt_version : 2.3
sources :
installed_size : 697249792
impacted_process : pycharm64,pycharm
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 : 5e6c0e85-411c-4822-9536-662d827b4d0a
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : d8e61e0d3d8c4e15ebb79b689f55a3239d4e1d6fde9f867acb9c0b3d2ccee678
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-11-29T15:01:59.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 : C6GLv8AiKoDGjYWG80G2XaYn1Wlmk/qJpyR1b7D9pnQloq5JCVv4A5SG+vEeNBBjt7KOKFno+oNbf5DdHFOxU5B2Y7gKXAQJQ24sojW+dk1zj6UiiJKhP8/eLEGF71BNPuTDj/KeK6vhwqayStXfZ9DAjuuwfZbv4jyp4+o7OKwmgwx+e4m+Re9geEeanAOj0+lhmtnVCt05qLM6hpaeENxz7VXWB0uK9lqRxoDrjGFRoeKjwoM8wWxF+gHwZd3/RBzQkKox2gu6hEl/8tJvC80UKVirVmNVh6UcrPblVEAW92lER/kuFM7J+H1taOvMorPWMvaaKILaqTZ+A6Mq5w==
# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2023
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
from setuphelpers import *
def install():
install_dmg(glob.glob("pycharm*.dmg")[0])
def uninstall():
remove_tree("/Applications/PyCharm.app")
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
releases = wgets("https://data.services.jetbrains.com/products/releases?code=PC&latest=true&type=release",proxies=proxies, as_json=True)['PCP'][0]
version = releases['version']
downloads = releases['downloads']
download_dict = {
'windows-x64': downloads['windows']['link'],
'debian_based-x64': downloads['linux']['link'],
'debian_based-arm64': downloads['linuxARM64']['link'],
'darwin-x64': downloads['mac']['link'],
'darwin-arm': downloads['macM1']['link']
}
os_type = control.target_os + "-" + ensure_list(control.architecture)[0]
download_url = download_dict[os_type]
latest_bin = download_url.rsplit("/", 1)[-1]
latest_bin_extension = latest_bin.rsplit(".", 1)[-1]
# Downloading latest binaries
print(f"Latest {app_name} version is: {version}")
print(f"Download URL is: {download_url}")
if not isfile(latest_bin):
print(f"Downloading: {latest_bin}")
wget(download_url, latest_bin, proxies=proxies)
else:
print(f"Binary is present: {latest_bin}")
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print(f"Software version updated (from: {control.get_software_version()} to: {Version(version)})")
package_updated = True
else:
print(f"Software version up-to-date ({Version(version)})")
for f in glob.glob(f'*.{latest_bin_extension}'):
if f != latest_bin:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
return package_updated
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
0e0af8d44d27ffda191ae611bcbd33e6fc8f142a0c093754d7534d6a3f05b21f : WAPT/control
d8e61e0d3d8c4e15ebb79b689f55a3239d4e1d6fde9f867acb9c0b3d2ccee678 : WAPT/icon.png
661ab0fbc61d6084ad44a1b2ba3abd991b984b81f296ff87ef750996b5ca2bb2 : luti.json
26a7bbaf2fb5d101bfa68ba085913a598c8898594f265044f56fd2c9ac051c06 : pycharm-2025.2.4.dmg
f8ccc3a3a35cdf22cc729ea5723b2007d5fc7ea5be53f910de04acf9cba08103 : setup.py
10c450e5691d5eeee50cfe2308b82f1b69df1534071a44e39f5e0d858bc4c251 : update_package.py