Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Uninstall phpstorm 7.1 on ubuntu to install phpstorm 8

title says it all i want to uninstall phpstorm so i can upgrade but i cant figure out how. I have tired doing sudo apt-get remove phpstorm and also with the version number but it doesn't work.

I have also tried the synaptic package manger but still cant find phpstorm storm i have tried jet brains and phpstorm as well.

What can i do to remove it competently, should i just delete all of the files it is located in? Also what is the package name for phpstorm so made i can remove it with sudo apt-get remove 'packageName'

Appreciate all of the help thank you.

like image 418
Steve Avatar asked Oct 20 '14 16:10

Steve


People also ask

How do I completely uninstall PhpStorm?

Open the Apps & Features section in the Windows Settings dialog, select the PhpStorm 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 download and install PhpStorm on Ubuntu?

Install and use PhpStorm from the source tarballVisit the PhpStorm JetBrains official website (https://www.jetbrains.com/phpstorm/), and click on 'Download now'. Click on 'Download' to download the PhpStorm tarball for Linux. Click on 'Save file' and then click on 'OK'. The PhpStorm will be opened.

How do I run PhpStorm on Linux?

Run the PhpStorm app from the Applications directory, Launchpad, or Spotlight. Run the phpstorm.sh shell script in the installation directory under bin. You can also use the desktop shortcut, if it was created during installation. For information about running PhpStorm from the command line, see Command-line interface.


2 Answers

It is easy to complete uninstall phpstrom any version in Ubuntu . follow this instruction

  1. enter your home directory
  2. here you see .WebIde100 ( if it is hidden click ctrl + H to show hidden file)
  3. there open terminal and delete this folder the command is
    sudo rm -rf .WebIde100/
  4. then install your any version
  5. enjoy and happy coding
like image 99
tapos ghosh Avatar answered Nov 16 '22 01:11

tapos ghosh


You need only delete the directory installation, in my case the directory is:

use Ctrl+H to reveal hidden folders.

$rm -r ~/.PhpStorm2016.1

delete this directory and delete the script pstorm

$sudo rm /usr/local/bin/pstorm

you can find pstorm using

$whereis pstorm
like image 23
rral Avatar answered Nov 16 '22 01:11

rral