Reputation: 970
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.
Upvotes: 3
Views: 29204
Reputation: 41
Run this code for community version of PyCharm on Ubuntu 18.04:
sudo snap remove pycharm-community
Upvotes: 3
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
Reputation: 970
Finally able to delete some files and folders which were related to pycharm by following these steps:
But still few are left. could be seen in the latest screenshot.
Upvotes: 1
Reputation: 61
In fact, pycharm can be removed from an ubuntu machine by deleting the installation documents directly. Try the following steps:
/home
via Ctrl + H
, and then remove the folder.PyCharmCE2017.2
(it's the corresponding folder name on my machine)Note that the third-party packages can be uninstalled inside pycharm before your uninstallation(or see here)
Upvotes: 0