Last active
April 15, 2019 13:24
-
-
Save petrleocompel/007b8c7d1bf242776743e1c0ecb722d2 to your computer and use it in GitHub Desktop.
Ubuntu install
This file contains 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
#!/bin/bash | |
# NodeJS | |
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - | |
# Jetbrains toolbox | |
wget https://download.jetbrains.com/toolbox/jetbrains-toolbox-1.3.2421.tar.gz | |
tar xzrf jetbrains-toolbox-1.3.2421.tar.gz | |
rm jetbrains-toolbox-1.3.2421.tar.gz | |
# yarn | |
sudo npm install -g yarn | |
# Java | |
sudo add-apt-repository ppa:webupd8team/java | |
# Sublime Text 3 | |
sudo add-apt-repository ppa:webupd8team/sublime-text-3 | |
sudo apt-get update | |
sudo apt-get install -y nodejs oracle-java8-installer sublime-text-installer zsh | |
# Oh my zsh | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
# Cant live without python | |
sudo apt-get install pip | |
pip install bpython mycli pgcli http-prompt | |
yarn global install changelog-view | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment