3

enter image description here

following one question on stack overflow I have tried these commands but no luck.

$ sudo rm -fv /usr/local/bin/charm

$ sudo rm -rfv ~/Library/Preferences/PyCharm?0

$ sudo rm -rfv ~/Library/Caches/PyCharm?0

$ sudo rm -rfv ~/Library/Application\ Support/PyCharm?0

$ sudo rm -rfv ~/Library/Logs/PyCharm?0

$ sudo rm -r /var/lib/dpkg/info/pycharm.md5sums

I also tried to go inside pycharm folder but there delete option was disabled.enter image description here

Ehsan
  • 604
  • 7
  • 21
Humble Dolt
  • 940
  • 2
  • 16
  • 31
  • Does this answer your question? [Remove Pycharm completely , Ubuntu](https://stackoverflow.com/questions/33913471/remove-pycharm-completely-ubuntu) – bad_coder Jun 21 '21 at 16:29

4 Answers4

3

Run this code for community version of PyCharm on Ubuntu 18.04:

sudo snap remove pycharm-community
Dinh Jylee
  • 41
  • 3
1

enter image description hereFinally able to delete some files and folders which were related to pycharm by following these steps:

  1. Open Ubuntu Software Center
  2. Click on all software
  3. On search bar, type pycharm.
  4. Remove it.

But still few are left. could be seen in the latest screenshot.

Humble Dolt
  • 940
  • 2
  • 16
  • 31
0

In fact, pycharm can be removed from an ubuntu machine by deleting the installation documents directly. Try the following steps:

  1. Find the hidden files under the dir:/home via Ctrl + H, and then remove the folder.PyCharmCE2017.2(it's the corresponding folder name on my machine)
  2. Remove the remaining installation files in your installation path

Note that the third-party packages can be uninstalled inside pycharm before your uninstallation(or see here)

Curnane
  • 61
  • 1
  • 11
0

If you use Ubuntu Make to install Pycharm Community Edition

sudo umake ide pycharm

Remove Pycharm with this command

sudo umake ide pycharm --remove
ocram88
  • 349
  • 1
  • 3
  • 7