Skip to content

Instantly share code, notes, and snippets.

@krsna1729
Last active March 9, 2019 05:48
Show Gist options
  • Save krsna1729/9c5094df4aa304f0b554d87bf6dcd68b to your computer and use it in GitHub Desktop.
Save krsna1729/9c5094df4aa304f0b554d87bf6dcd68b to your computer and use it in GitHub Desktop.
install go
sudo su
GO_VER=1.12
wget https://dl.google.com/go/go${GO_VER}.linux-amd64.tar.gz && \
tar -C /usr/local -xzf go${GO_VER}.linux-amd64.tar.gz
echo 'export PATH="$PATH:/usr/local/go/bin"' | tee -a /etc/profile
echo 'export GOPATH="$HOME/go"' | tee -a /etc/profile
echo 'export PATH="$PATH:$GOPATH/bin"' | tee -a /etc/profile
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment