Package Details: pycharm 2026.1.2-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: 2.35
First Submitted: 2025-10-04 18:47 (UTC)
Last Updated: 2026-05-15 20:18 (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 .. 14 15 16 17 18 19 20 21 22 23 24 .. 48 Next › Last »

klaasjanelzinga commented on 2021-04-08 17:43 (UTC) (edited on 2021-04-08 17:43 (UTC) by klaasjanelzinga)

Hi @evandare, pls check if you do not have a virtualenv active.

Xavier commented on 2021-04-08 17:35 (UTC)

Hi @evandare, your error may be due to various reasons (but none related to this package) check your PYTHONPATH of if you have a special installation of some components in Python. You can also build the package in a clean chroot [0] or use an unofficial repo [1].

[0] https://wiki.archlinux.org/index.php/DeveloperWiki:Building_in_a_clean_chroot [1] chaotic-aur

evandare commented on 2021-04-08 17:06 (UTC) (edited on 2021-04-08 17:08 (UTC) by evandare)

Hi, I get the following error during the build step:

==> Starting build()...
Traceback (most recent call last):
  File "/home/XXX/.cache/yay/pycharm-professional/src/pycharm-2021.1/plugins/python/helpers/pydev/setup_cython.py", line 112, in <module>
    build_extension("_pydevd_bundle", extension_name, target_pydevd_name, force_cython, extension_folder, True)
  File "/home/XXX/.cache/yay/pycharm-professional/src/pycharm-2021.1/plugins/python/helpers/pydev/setup_cython.py", line 69, in build_extension
    from Cython.Build import cythonize  # @UnusedImport
ModuleNotFoundError: No module named 'Cython'
==> ERROR: A failure occurred in build().
    Aborting...
error making: pycharm-professional

Installing Cython via pacman -S cython doesn't seem to fix it.

kbkeller commented on 2021-04-07 20:01 (UTC)

There is a new version available 2021.1

rhysperry111 commented on 2021-03-21 20:15 (UTC) (edited on 2021-03-21 20:20 (UTC) by rhysperry111)

This package appears to hang forever on

  -> Compressing package...

EDIT: I have observed this on multiple packages. Suspecting a problem on my end/with yay

Xavier commented on 2020-12-21 23:14 (UTC)

@edacval fixed, thanks

edacval commented on 2020-12-21 22:21 (UTC)

Build fails with : install: cannot stat '/opt/pycharm-professional/bin/pycharm.png': No such file or directory Fix:

diff --git a/PKGBUILD b/PKGBUILD
index 6912f8b..fc3ec0c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -66,8 +66,8 @@ package() {
     install -dm 755 "$pkgdir/usr/share/applications"
     install -Dm 644 "$pkgname.desktop" "$pkgdir/usr/share/applications/"
     install -dm 755 "$pkgdir/usr/share/icons/hicolor/"{128x128,scalable}"/apps/"
-    install -Dm 644 "/opt/$pkgname/bin/pycharm.png" "$pkgdir/usr/share/icons/hicolor/128x128/apps/pycharm.png"
-    install -Dm 644 "/opt/$pkgname/bin/pycharm.svg" "$pkgdir/usr/share/icons/hicolor/scalable/apps/pycharm.svg"
+    install -Dm 644 "$pkgdir/opt/$pkgname/bin/pycharm.png" "$pkgdir/usr/share/icons/hicolor/128x128/apps/pycharm.png"
+    install -Dm 644 "$pkgdir/opt/$pkgname/bin/pycharm.svg" "$pkgdir/usr/share/icons/hicolor/scalable/apps/pycharm.svg"

     # exec
     install -dm 755 "$pkgdir/usr/bin/"

Xavier commented on 2020-12-21 21:04 (UTC)

@Singularity yeah I know that pixmap is deprecated I did it due to a request by one user but I think in the hicolor folder is the correct place, fixed, thanks. @nickb937 I checked it and I added some of them, nspr is provided by nss and jre-openjdk-headless is not necessary, this pycharm version uses the bundle package with JRE inside provided by them.

nickb937 commented on 2020-12-15 10:45 (UTC)

The following packages are required dependencies:

libxss, nspr, nssutil, jre-openjdk-headless

See: ldd /opt/pycharm-professional/jbr/lib/libjcef.so

hopter commented on 2020-12-11 10:41 (UTC)

why hardcoded the icon path in desktop file?