Skip to content

Instantly share code, notes, and snippets.

@creotip
Last active November 14, 2018 09:17
Show Gist options
  • Save creotip/e5487ec7a7afa285671be707aed1518f to your computer and use it in GitHub Desktop.
Save creotip/e5487ec7a7afa285671be707aed1518f to your computer and use it in GitHub Desktop.
Ubuntu Automatic installation of stuff for developers
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