-
-
Save d4z3x/050fe05f6d8154fcaec2d280c28fd38c to your computer and use it in GitHub Desktop.
Revisions
-
simoncos revised this gist
Sep 21, 2017 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,5 @@ Install Golang 1.9: ``` wget https://storage.googleapis.com/golang/go1.9.linux-armv6l.tar.gz sudo tar -C /usr/local -xzf go1.9.linux-armv6l.tar.gz -
simoncos revised this gist
Sep 21, 2017 . 1 changed file with 18 additions and 4 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,19 @@ ``` wget https://storage.googleapis.com/golang/go1.9.linux-armv6l.tar.gz sudo tar -C /usr/local -xzf go1.9.linux-armv6l.tar.gz export PATH=$PATH:/usr/local/go/bin # put into ~/.profile ``` If already installed old golang with apt-get: ``` sudo apt remove golang sudo apt-get autoremove source .profile ``` Test: ``` go version ``` -
konradko revised this gist
Sep 6, 2016 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ ``` wget https://storage.googleapis.com/golang/go1.7.linux-armv6l.tar.gz tar -C /usr/local -xzf go1.7.linux-armv6l.tar.gz export PATH=$PATH:/usr/local/go/bin ```` -
konradko created this gist
Sep 6, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ ``` wget https://storage.googleapis.com/golang/go1.7.linux-armv6l.tar.gz tar -C /usr/local -xzf export PATH=$PATH:/usr/local/go/bin ````