Skip to content

Instantly share code, notes, and snippets.

@mshRoR
Forked from sohelamin/guide.md
Created November 6, 2015 16:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mshRoR/e0d99c1d01396509ee70 to your computer and use it in GitHub Desktop.
Save mshRoR/e0d99c1d01396509ee70 to your computer and use it in GitHub Desktop.
Useful tool installation guide

Open JDK 8 installation

sudo apt-get purge openjdk*
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer
sudo apt-get install oracle-java8-set-default
java -version

PhpStorm 10 installation

cd /tmp
curl -s -L http://download.jetbrains.com/webide/PhpStorm-10.0.tar.gz | tar -xz
sudo mv PhpStorm-10.0.tar.gz /opt/phpstorm
/opt/phpstorm/bin/phpstorm.sh

Click on: Tools > Create Desktop entry

Nodejs 5 installation

curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash -
sudo apt-get install -y nodejs

npm installation

curl -L https://www.npmjs.com/install.sh | sh

Gulp installation

Globally

npm install --global gulp

Locally

npm install --save-dev gulp

Grunt installation

npm install -g grunt-cli
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment