Skip to content

Instantly share code, notes, and snippets.

@mhou1981
Last active November 26, 2018 07:03
Show Gist options
  • Save mhou1981/0de8f960408403315036f45e495e4377 to your computer and use it in GitHub Desktop.
Save mhou1981/0de8f960408403315036f45e495e4377 to your computer and use it in GitHub Desktop.
Isntall Go Lang 1.10
rm -rf /usr/local/go \
&& curl 'https://dl.google.com/go/go1.11.2.linux-amd64.tar.gz' -o go.tar.gz \
&& tar -zxvf go.tar.gz -C /usr/local \
&& rm -f go.tar.gz
export GOPATH=$HOME/go
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment