Last active
November 26, 2018 07:03
-
-
Save mhou1981/0de8f960408403315036f45e495e4377 to your computer and use it in GitHub Desktop.
Isntall Go Lang 1.10
This file contains hidden or 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
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