Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to completely uninstall webstorm on ubuntu [closed]

I am trying to remove Webstorm editor completely from my Ubuntu 14.04, I have already tried by removing its installation folder but its settings still exists, is there any command exist to remove it completely or what any other way? please help me out?

like image 761
Piyush Rathi Avatar asked Feb 05 '15 07:02

Piyush Rathi


People also ask

How do I Uninstall JetBrains?

Open the Apps & Features section in the Windows Settings dialog, select the IntelliJ IDEA app and click Uninstall. Depending on your version of Windows, the procedure for uninstalling programs may be different. You can also manually run Uninstall.exe in the installation directory under /bin.

How do I completely remove PhpStorm from Windows?

Open the Apps & Features section in the Windows Settings dialog, select the PhpStorm app and click Uninstall.


1 Answers

According to the WebStorm documentation, the config is stored in ~/.WebStorm9

So assuming you did not change the default location: from the command line run

rm -rf ~/.WebStorm9

Update

For versions around the year 2020 you should go to the ~ and find .config and .cache folder and then delete your specific folder version inside JetBrains folder:

~/.config/JetBrains/<product><version>
~/.cache/JetBrains/<product><version>
like image 167
Leon Avatar answered Oct 08 '22 09:10

Leon