Last active
November 14, 2018 09:17
-
-
Save creotip/e5487ec7a7afa285671be707aed1518f to your computer and use it in GitHub Desktop.
Ubuntu Automatic installation of stuff for developers
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
sudo apt-get install -y curl | |
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash - | |
sudo apt-get install -y nodejs | |
sudo apt-get install -y htop | |
sudo apt-get install -y vscode | |
sudo apt-get install -y git | |
sudo apt-get install -y libxss1 libappindicator1 libindicator7 | |
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |
sudo dpkg -i google-chrome*.deb | |
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - | |
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list | |
sudo apt-get update && sudo apt-get install yarn | |
sudo apt install snapd | |
sudo snap install slack --classic | |
sudo apt update | |
sudo apt install python3-minimal | |
sudo apt install python3-pip | |
sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make | |
sudo apt-get update | |
sudo apt-get install ubuntu-make | |
umake ide idea-ultimate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment