Skip to content

Instantly share code, notes, and snippets.

@taobun
Last active October 15, 2020 06:40
Show Gist options
  • Save taobun/e35de3fbadb70dcbeedab517dface8e6 to your computer and use it in GitHub Desktop.
Save taobun/e35de3fbadb70dcbeedab517dface8e6 to your computer and use it in GitHub Desktop.
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get install -y build-essential curl wget
wget https://golang.org/dl/go1.14.9.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.14.9.linux-amd64.tar.gz
rm go1.14.9.linux-amd64.tar.gz
echo "export PATH=\$PATH:/usr/local/go/bin:~/go/bin" >> $HOME/.profile
source ~/.profile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment