Remove Pycharm completely, Ubuntu

I want to completely remove my old pycharm from my Ubuntu machine, so my new installation will not be affected by the previous settings. Any help would be appreciated

+7
source share
5 answers

You can try the following commands: it will completely remove pycharm with its preferences from ubuntu.

rm -fv /usr/local/bin/charm
rm -rfv ~/Library/Preferences/PyCharm?0
rm -rfv ~/Library/Caches/PyCharm?0
rm -rfv ~/Library/Application\ Support/PyCharm?0
rm -rfv ~/Library/Logs/PyCharm?0
+11
source

If you have installed the file. /pycharm.sh

Delete all folders and files below:

/usr/local/bin/charm => should rm with sudo
~/.Pycharm<version>
~/.local/share/icons/jetbrains-pycharm.png
~/.local/share/applications/jetbrains-pycharm.desktop
~/.java/.userPrefs/jetbrains/

And now you can reinstall the new version or have a clean computer without pycharm.

+4
source

pycharm snap package, , :

sudo snap remove [pycharm-professional|pycharm-community]
rm -rf ~/.PyCharm2017.3
rm -rf ~/.java/.userPrefs/jetbrains/pycharm/

.PyCharm2017.3 .

+4

Pycharm ubuntu, - , , .PyCharmx.x.

+2
source

It may be a little more convenient to leave this hidden file to install the “main” update: for example, starting from PyCharm Community Edition 2.4 to 2.6, I found this in the home directory: PyCharmCE2018.2; the installer suggests using (by default) or ignoring.

0
source

Source: https://habr.com/ru/post/1617399/


All Articles