Humble Dolt
Humble Dolt

Reputation: 970

How can I remove pycharm from my ubuntu machine?

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

Upvotes: 3

Views: 29204

Answers (4)

Dinh Jylee
Dinh Jylee

Reputation: 41

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

sudo snap remove pycharm-community

Upvotes: 3

ocram88
ocram88

Reputation: 379

If you use Ubuntu Make to install Pycharm Community Edition

sudo umake ide pycharm

Remove Pycharm with this command

sudo umake ide pycharm --remove

Upvotes: 0

Humble Dolt
Humble Dolt

Reputation: 970

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.

Upvotes: 1

Curnane
Curnane

Reputation: 61

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)

Upvotes: 0

Related Questions