Package Details: pycharm-professional 2024.3.5-1

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.51
First Submitted: 2013-09-25 03:56 (UTC)
Last Updated: 2025-03-20 13:26 (UTC)

Dependencies (19)

Required by (0)

Sources (4)

Pinned Comments

Latest Comments

« First ‹ Previous 1 .. 3 4 5 6 7 8 9 10 11 12 13 .. 46 Next › Last »

qubidt commented on 2023-07-19 09:17 (UTC)

@jmcb I have the same issue. It seems like a bug in jetbrains' terminal emulator (and its interpretation of xterm- escape codes)? It doesn't always happen consistently either.

A workaround that works for me is to tell less (man's default pager, which I assume you are also using), to not send the termcap initialization strings. This seems (on my system at least) to avoid the triggering whatever condition that causes man to produce an empty screen. i.e., instead of man du, you can run LESS="$LESS --no-init" man du.

You can have your shell automatically use this workaround by setting the environment variable on startup. You can check if you're running inside jetbrains' terminal with the TERMINAL_EMULATOR env variable. e.g. in .bashrc/.zshrc:

if [[ "$TERMINAL_EMULATOR" = JetBrains-JediTerm ]]; then
    export LESS="$LESS --no-init"
fi

imcb commented on 2023-05-26 21:08 (UTC) (edited on 2023-05-26 21:09 (UTC) by imcb)

Whenever I try to open a manual page in the integrated terminal, I get nothing but a bunch of tildes, and it says something like: Manual page man(1) byte 0/0 (END) (press h for help or q to quit)

man works fine in any other console. in pycharm this happens with both bash and fish. Does anyone else have this problem? Is this an upstream issue? I can't find any youtrack bug entries on it for some reason, I would have thought it would be pretty important

p.s. less and bat both work fine. man -H also works

Xavier commented on 2023-05-04 02:18 (UTC)

Building locally the speedup debugger is not ready for Python 3.11, I disabled it until it is fixed: issue

arcanis commented on 2023-05-04 00:20 (UTC)

does not compile with python3.11, I guess https://github.com/archlinux/svntogit-community/blob/packages/pycharm-community-edition/trunk/fix-compile-cython-extensions-error.patch has to be added

tocic commented on 2023-04-30 06:47 (UTC)

I have the following warnings with the current HEAD that were not present in 983be5d:

[1/1] Cythonizing _pydevd_bundle/pydevd_cython.pyx
/usr/lib/python3.10/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/makepkg/pycharm-professional/src/pycharm-2023.1.1/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_cython.pxd
==> WARNING: Package contains reference to $srcdir
opt/pycharm-professional/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_cython.cpython-310-x86_64-linux-gnu.so
opt/pycharm-professional/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_39_310.cpython-310-x86_64-linux-gnu.so

Xavier commented on 2023-04-28 18:30 (UTC)

The first patch was released 2023.1.1, the first startup bug is fixed for the next major release and not for this release and I hope it doesn't have side consequences, but at least several important bugs were fixed in this patch.

klaasjanelzinga commented on 2023-04-20 14:52 (UTC) (edited on 2023-04-20 14:53 (UTC) by klaasjanelzinga)

Link to the failure of the migration dialog https://youtrack.jetbrains.com/issue/IDEA-311607

lybin commented on 2023-04-20 09:43 (UTC)

@Xavier, do you have direct links on bugs which block us to upgrade? let's go to vote to speed up.

leandrocunha commented on 2023-04-14 21:51 (UTC) (edited on 2023-04-14 21:53 (UTC) by leandrocunha)

I did a test and it seems that the most current version has some problems causing the machine to freeze for a while and it returns to normal in minutes in Arch. On a Windows machine I haven't had any problems so far and it's a much better machine where, if there's a memory leak, you wouldn't notice. I did downgrade version to 2022.3.3.

<deleted-account> commented on 2023-04-03 10:52 (UTC)

Thank you @Xavier for uploading the files for the latest version.

For those of us that want to have the latest version, but are unable or unwilling to build the project, I should mention that you can also download PyCharm 2023.1 from the "JetBrains Toolbox" program, available on the AUR under the name jetbrains-toolbox. It provides a "one-click install" for all JetBrains products, even for multiple versions of it at once!

But the same issues reported by Xavier remain, so do it at your own risk :)