Package Details: pycharm 2026.1.4-1

Git Clone URL: https://aur.archlinux.org/pycharm.git (read-only, click to copy)
Package Base: pycharm
Description: The only Python IDE you need. Bundled with the official JetBrains Runtime (JBR)
Upstream URL: https://www.jetbrains.com/pycharm/
Licenses: custom
Conflicts: pycharm-community-edition, pycharm-professional
Provides: pycharm
Replaces: pycharm-professional
Submitter: Xavier
Maintainer: Zpecter (Meaulnes)
Last Packager: Zpecter
Votes: 309
Popularity: 1.10
First Submitted: 2025-10-04 18:47 (UTC)
Last Updated: 2026-07-03 19:20 (UTC)

Dependencies (19)

Required by (0)

Sources (4)

Pinned Comments

Meaulnes commented on 2026-03-27 16:37 (UTC)

This comment from @AvacadoCookie should be pinned, IMO.

If anyone is getting errors about Cython or setuptools, and they are using Conda, that comment has the answer.

If anyone is getting errors about Cython or setuptools, and they are using pyenv, there are 2 possible ways to fix it:

  1. pyenv local system to set Python back to the system installed Python for this session.
  2. pip install Cython setuptools to install the necessary packages to your preferred python installation.

AvocadoCookie commented on 2025-12-14 16:22 (UTC)

For all users with ModuleNotFoundError: No module named 'Cython' or 'setuptools' reported, please try the following methods to address the problem:

  1. Quit conda environment. Now after which python typed in console, the output should be /usr/bin/python.
  2. Try again.
  3. If the installation still failed, try again after pacman -S cython python-setuptools.

Latest Comments

« First ‹ Previous 1 .. 16 17 18 19 20 21 22 23 24 25 26 .. 49 Next › Last »

mqs commented on 2020-12-06 12:43 (UTC)

@XavierCLL thank you for the swift fix :)

Xavier commented on 2020-12-06 01:54 (UTC) (edited on 2020-12-06 02:01 (UTC) by Xavier)

Hi @mqs, thanks for reporting it, I didn't know that some app still uses the pixmaps folder, fixed, (update: small fix but I decided increases the pkgrel)

mqs commented on 2020-12-05 23:17 (UTC)

Hey! Thanks for the package. Could you please put the icon back into /usr/share/pixmaps, so other apps can find it via xdg (when only searching for the icon)? A symlink to /opt/pycharm-professional/bin/pycharm.png(or svg) should be enough.

I noticed that it was gone by pure coincidence (the albert plugin[1] uses it and I was working on it today) :D

Is there a reason it was (re)moved?

[1] Albert Launcher: https://albertlauncher.github.io/ Jetbrains plugin for albert: https://github.com/mqus/jetbrains-albert-plugin

Xavier commented on 2020-12-05 18:48 (UTC)

Thanks guys, updated and fixed

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?