Created
July 10, 2018 17:41
-
-
Save ifnazar/e70f48bda8997411b584b78e745f5167 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo add-apt-repository -y ppa:git-core/ppa | |
sudo add-apt-repository -y ppa:webupd8team/java | |
sudo apt-get update | |
##Java | |
sudo apt-get install -y oracle-java8-installer | |
sudo update-java-alternatives -s java-8-oracle | |
## Gradle | |
sudo apt-get install -y gradle | |
# NPM modules | |
sudo apt-get install -y npm | |
sudo npm install -g bower grunt-cli | |
# nvm, node and modules | |
sudo npm install -g n | |
sudo n 6.9.1 | |
sudo n 8.2.1 | |
sudo n 8.8.1 | |
## gulp | |
sudo npm install -g yo gulp | |
## scss | |
sudo apt install ruby -y | |
sudo apt install ruby-sass -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment