Skip to content

Instantly share code, notes, and snippets.

@ssi-anik
Last active November 25, 2017 15:54
Show Gist options
  • Select an option

  • Save ssi-anik/4bbfa82d11c85e7f95a16bca88e3b303 to your computer and use it in GitHub Desktop.

Select an option

Save ssi-anik/4bbfa82d11c85e7f95a16bca88e3b303 to your computer and use it in GitHub Desktop.
Install PHPStorm, Webstorm, PyCharm on Ubuntu 16.04 - Through terminal/bash/zsh

Remove OpenJDK and install Oracle JAVA

  1. sudo apt-get remove openjdk*
  2. sudo add-apt-repository ppa:webupd8team/java
  3. sudo apt-get update
  4. sudo apt-get install java-common oracle-java8-installer
  5. sudo apt-get install oracle-java8-set-default source /etc/profile

Install PhpStorm

  1. tar xvf PhpStorm-VERSION_NUMBER.tar.gz
  2. sudo mv PhpStorm-VERSION_NUMBER /opt/phpstorm
  3. sudo ln -s /opt/phpstorm/bin/phpstorm.sh /usr/local/bin/phpstorm
  4. phpstorm

Install WebStorm

  1. tar xvf WebStorm-VERSION_NUMBER.tar.gz
  2. sudo mv WebStorm-VERSION_NUMBER /opt/webstorm
  3. sudo ln -s /opt/webstorm/bin/webstorm.sh /usr/local/bin/webstorm
  4. webstorm

Install PyCharm

  1. tar xvf pycharm-VERSION_NUMBER.tar.gz
  2. sudo mv pycharm-VERSION_NUMBER /opt/pycharm
  3. sudo ln -s /opt/pycharm/bin/pycharm.sh /usr/local/bin/pycharm
  4. pycharm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment