Remove Pycharm completely , Ubuntu

前端 未结 10 606
不思量自难忘°
不思量自难忘° 2021-02-04 01:01

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

相关标签:
10条回答
  • 2021-02-04 01:33

    Incase if pycharm is installed using snap package then you could remove it by running following commands:

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

    replace .PyCharm2017.3 with your installed version.

    0 讨论(0)
  • 2021-02-04 01:34

    open your terminal as common user

    1. $rm -d -r ~/.PyCharm2019.3

    run same command as root user

    1. $sudo su
    2. $rm -d -r ~/.PyCharm2019.3

    note PyCharm2019.3 replaced with your PyCharm version

    0 讨论(0)
  • 2021-02-04 01:34

    Open terminal (shortcut: Ctrl+Alt+T) in your ubuntu system and try this command:

    sudo snap remove pycharm-community
    
    0 讨论(0)
  • 2021-02-04 01:35

    You can try the following commands it will completely delete the 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
    
    0 讨论(0)
  • 2021-02-04 01:37

    If you installed by ./pycharm.sh

    Remove all folder 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 new version, or having a clean pc without pycharm.

    0 讨论(0)
  • 2021-02-04 01:37

    Maybe, is a little convenience to leave this hidden file for update "major" installation: for example, since PyCharm Community Edition 2.4 to 2.6, I found this in home directory: PyCharmCE2018.2; the installer suggests use (default) or ignore.

    0 讨论(0)
提交回复
热议问题