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 .. 26 27 28 29 30 31 32 33 34 35 36 .. 48 Next › Last »

Singularity commented on 2018-07-26 17:11 (UTC)

I also miss it. I think the nojdk version should be the default one.

You don't need the update-cache part in the .install file anymore, it's done by pacman now. You find files with the name in /usr/share/libalpm/hooks/.

matthias.lisin commented on 2018-07-26 10:46 (UTC)

What happened to the no-jdk version?

matthias.lisin commented on 2018-06-15 10:55 (UTC)

@zerophase Can't reproduce. It sounds more like an GTK misconfiguration on your side.

zerophase commented on 2018-06-15 02:59 (UTC)

Getting a warning for not finding gtk-engine-murrine, when launching PyCharm from the console. I think it's an optional dependency.

MarcinWieczorek commented on 2018-06-04 09:57 (UTC)

Please quote the paths, such as $pkgdir

lybin commented on 2018-05-31 19:24 (UTC) (edited on 2018-05-31 19:24 (UTC) by lybin)

==> WARNING: Package contains reference to $srcdir

opt/pycharm-professional/helpers/pydev/_pydevd_bundle_ext/pydevd_cython.cpython-36m-x86_64-linux-gnu.so

opt/pycharm-professional/helpers/pydev/_pydevd_frame_eval_ext/pydevd_frame_evaluator.cpython-36m-x86_64-linux-gnu.so

Xavier commented on 2018-04-29 18:39 (UTC)

Hi @resurtm, you can set the java options in the file ~/.bash_profile (not in ~/.bashrc):

export _JAVA_OPTIONS='...'

e.g:

export _JAVA_OPTIONS='-Dawt.useSystemAAFontSettings=lcd'

resurtm commented on 2018-04-29 15:29 (UTC)

Hey there! Nice package. :-)

I have a question: how can I adjust JVM settings for this PyCharm distribution? I remember in distribution coming from JetBrains there were some files called something like vmoptions and vmoptions64.

Is there anything like that in this package?

Thank you!

Xavier commented on 2018-04-03 17:47 (UTC)

@marquicus, it seems that packaging for python 3 is missing, check from repositories: sudo pacman -Sy python-packaging

marquicus commented on 2018-04-03 13:26 (UTC)

It throws the following error:

==> Validating source files with sha256sums... pycharm-professional-2018.1.tar.gz ... Passed pycharm-professional.desktop ... Passed pycharm-professional.install ... Passed pycharm ... Passed charm.desktop ... Passed charm ... Passed ==> Extracting sources... -> Extracting pycharm-professional-2018.1.tar.gz with bsdtar ==> Starting build()... Traceback (most recent call last): File "helpers/pydev/setup_cython.py", line 14, in <module> from setuptools import setup File "/usr/lib/python3.6/site-packages/setuptools/init.py", line 14, in <module> from setuptools.dist import Distribution, Feature File "/usr/lib/python3.6/site-packages/setuptools/dist.py", line 21, in <module> from setuptools.extern import packaging File "/usr/lib/python3.6/site-packages/setuptools/extern/init.py", line 61, in load_module "distribution.".format(**locals()) ImportError: The 'packaging' package is required; normally this is bundled with this package so if you get this warning, consult the packager of your distribution. ==> ERROR: A failure occurred in build(). Aborting... ==> ERROR: Makepkg was unable to build pycharm-professional. ==> Restart building pycharm-professional ? [y/N] ==> ---------------------------------------------</module></module></module>

==> ERROR: unable to update

The missing package is installed

$ pip install packaging Requirement already satisfied: packaging in /usr/lib/python2.7/site-packages Requirement already satisfied: six in /usr/lib/python2.7/site-packages (from packaging) Requirement already satisfied: pyparsing>=2.0.2 in /usr/lib/python2.7/site-packages (from packaging)