Last active
May 19, 2019 07:25
-
-
Save anirudh-chhangani/f8fb7a0e3888ffaa62c92d50100da360 to your computer and use it in GitHub Desktop.
ubuntu-setup
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 update -y | |
sudo apt upgrade -y | |
sudo apt install htop curl python3 -y | |
sudo apt install python3-pip -y | |
curl https://sh.rustup.rs -sSf | sh | |
sudo apt install build-essential -y | |
sudo apt install gdb -y | |
sudo apt install cmake -y | |
curl -fsSL https://get.docker.com -o get-docker.sh | |
sh get-docker.sh | |
sudo apt-get install terminator -y | |
sudo apt-add-repository ppa:fish-shell/release-3 | |
sudo apt update && sudo apt install fish -y | |
chsh -s /usr/bin/fish | |
sudo apt clean | |
sudo apt autoremove |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment