Thanks guys, updated and fixed
Search Criteria
Package Details: pycharm-professional 2024.3.5-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/pycharm-professional.git (read-only, click to copy) |
---|---|
Package Base: | pycharm-professional |
Description: | Python IDE for Professional Developers. Professional Edition |
Upstream URL: | https://www.jetbrains.com/pycharm/ |
Keywords: | development editor ide jetbrains python |
Licenses: | custom |
Submitter: | hippojazz |
Maintainer: | Xavier (37h4n) |
Last Packager: | Xavier |
Votes: | 292 |
Popularity: | 0.49 |
First Submitted: | 2013-09-25 03:56 (UTC) |
Last Updated: | 2025-03-20 13:26 (UTC) |
Dependencies (19)
- fontconfig (fontconfig-gitAUR, fontconfig-ubuntuAUR)
- giflib (giflib-gitAUR)
- glibc (glibc-gitAUR, glibc-linux4AUR, glibc-eacAUR)
- libdbusmenu-glib
- python (python37AUR, python311AUR, python310AUR)
- sh (dashbinshAUR, bash-devel-static-gitAUR, zshbinshAUR, bash-devel-gitAUR, busybox-coreutilsAUR, bash-gitAUR, bash)
- ttf-font (neuropol-ttfAUR, ttf-win7-fontsAUR, ttf-ms-win8AUR, ttf-ms-win8-arabicAUR, ttf-ms-win8-hebrewAUR, ttf-ms-win8-seaAUR, ttf-ms-win8-indicAUR, ttf-ms-win8-japaneseAUR, ttf-ms-win8-koreanAUR, ttf-ms-win8-zh_cnAUR, ttf-ms-win8-zh_twAUR, ttf-ms-win8-thaiAUR, ttf-ms-win8-otherAUR, ttf-kidsAUR, ttf-liberation-sans-narrowAUR, ttf-cavafy-scriptAUR, ttf-ms-fontsAUR, ttf-dejavu-ibAUR, ttf-zeldaAUR, ttf-oxygenAUR, ttf-oxygen-gfAUR, ttf-share-gfAUR, ttf-gostAUR, otf-inconsolata-dzAUR, ttf-d2codingAUR, ttf-agaveAUR, ttf-caracteresAUR, ttf-cuprumAUR, ttf-autour-oneAUR, ttf-impallari-milongaAUR, ttf-impallari-miltonianAUR, ttf-clarity-cityAUR, ttf-ms-win10AUR, ttf-ms-win10-japaneseAUR, ttf-ms-win10-koreanAUR, ttf-ms-win10-seaAUR, ttf-ms-win10-thaiAUR, ttf-ms-win10-zh_cnAUR, ttf-ms-win10-zh_twAUR, ttf-ms-win10-otherAUR, ttf-win10AUR, ttf-bmonoAUR, ttf-pt-astra-factAUR, ttf-weblysleekuiAUR, ttf-pt-astra-sansAUR, ttf-pt-astra-serifAUR, ttf-pt-sansAUR, ttf-pt-serifAUR, ttf-pt-monoAUR, ttf-pt-root_uiAUR, ttf-xo-fontsAUR, ttf-paratypeAUR, ttf-dejavu-emojilessAUR, ttf-lucida-fontsAUR, ttf-juiseeAUR, ttf-ms-win10-autoAUR, ttf-karlaAUR, ttf-ms-win11-autoAUR, ttf-ms-win10-cdnAUR, noto-fonts-liteAUR, ttf-ibm-plex-sans-scAUR, noto-fonts-variable-liteAUR, ttf-shangguAUR, noto-fonts-latin-greek-cyrillicAUR, apple-fontsAUR, ttf-plemoljpAUR, ttf-ms-win11AUR, ttf-ms-win11-japaneseAUR, ttf-ms-win11-koreanAUR, ttf-ms-win11-seaAUR, ttf-ms-win11-thaiAUR, ttf-ms-win11-zh_cnAUR, ttf-ms-win11-zh_twAUR, ttf-ms-win11-otherAUR, ttf-plemoljp-binAUR, ttf-noto-sans-vfAUR, ttf-noto-serif-vfAUR, ttf-noto-sans-mono-vfAUR, gnu-free-fonts, noto-fonts, ttf-bitstream-vera, ttf-croscore, ttf-dejavu, ttf-droid, ttf-ibm-plex, ttf-input, ttf-input-nerd, ttf-liberation, ttf-roboto)
- cython (cython-gitAUR) (make)
- python-setuptools (make)
- docker-compose (docker-compose-v1-binAUR, docker-compose-gitAUR, docker-desktopAUR) (optional) – For support docker inside Pycharm
- docker-machine (docker-machine-gitlab-binAUR) (optional) – For support docker inside Pycharm
- ipython (ipython-gitAUR) (optional) – For enhanced interactive Python shell inside Pycharm
- jupyter-server (optional) – For Jupyter notebooks and apps
- openssh (openssh-gitAUR, openssh-dnatAUR, openssh-selinuxAUR, openssh-gssapiAUR, openssh-hpn-shimAUR) (optional) – For deployment and remote connections
- python-coverage (optional) – For support code coverage measurement
- python-pytest (optional) – For support testing inside Pycharm
- python-setuptools (optional) – Packages manager for Python, for project interpreter
- python-tox (optional) – Python environments for testing tool
- vagrant (vagrant-gitAUR) (optional) – For support virtualized development environments
Required by (0)
Sources (4)
Latest Comments
« First ‹ Previous 1 .. 13 14 15 16 17 18 19 20 21 22 23 .. 46 Next › Last »
Xavier commented on 2020-12-05 18:48 (UTC)
donny commented on 2020-12-05 14:34 (UTC) (edited on 2020-12-05 14:35 (UTC) by donny)
@qft thanks for your tip, it's working again.
- add 'cython' to makedepends, so it looks like this:
makedepends=('python-setuptools' 'cython')
- update the build() function:
build() {
cd "pycharm-$pkgver"
# compile PyDev debugger used by PyCharm to speedup debugging
rm plugins/python/helpers/pydev/_pydevd_frame_eval/*.c
python plugins/python/helpers/pydev/setup_cython.py build_ext --build-temp build --build-lib . --force-cython
rm -r bin/fsnotifier lib/pty4j-native/linux/{x86,ppc64le}
}
qft commented on 2020-12-05 03:57 (UTC)
@XavierCLL The reason for this bug is that the debugger .c files are not synchronized with the .pyx files. This issue can be fixed by regenerating the .c files by passing the --force-cython flag to setup_cython.py. As I have done in the pycharm-eap PKGBUILD https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=pycharm-eap
Xavier commented on 2020-12-04 06:32 (UTC)
Confirmed, thanks for reporting it @flying-sheep
flying-sheep commented on 2020-12-03 14:54 (UTC) (edited on 2020-12-03 14:56 (UTC) by flying-sheep)
The speedups seem to not work currently with Python 3.9:
https://youtrack.jetbrains.com/issue/PY-45771
so we should probably not compile them for the time being
ajong commented on 2020-08-15 03:30 (UTC)
Just updated to 2020.2 on my XFCE Manjaro system. For some reason, natural scrolling is being inconsistent within PyCharm. The markdown visualization behaves properly with natural scrolling, but the code editor scrolls in the opposite direction. Certainly a strange bug! I'm using libinput for smooth scrolling, could be the issue? I realize this is most likely an issue with my personal device, but would anyone know how to fix this, please?
Xavier commented on 2020-07-30 17:28 (UTC) (edited on 2020-07-30 17:33 (UTC) by Xavier)
Hi @navarroaxel, good point, I set the ".0" to specify that it is the first version of the main release "2020.2", "literally" I'm not changing the package version but at the same time you're right, I'll do it for the next main release.
navarroaxel commented on 2020-07-30 11:24 (UTC)
The https://wiki.archlinux.org/index.php/Arch_package_guidelines#Package_versioning says that the package version "should be the same as the version released by the author". I think you should use 2020.2 without the trailing ".0".
grinderz commented on 2020-07-14 05:38 (UTC)
i'm waiting fixed updates via pkgrelease version in terminal, seems sometimes need open browser ))
Pinned Comments