-
-
Save kissjava/c77cf66957759a9f3a47693397c38308 to your computer and use it in GitHub Desktop.
Revisions
-
pcgeek86 revised this gist
Oct 31, 2018 . 1 changed file with 4 additions and 2 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,7 @@ cd $HOME FileName='go1.11.1.linux-armv6l.tar.gz' wget https://dl.google.com/go/$FileName sudo tar -C /usr/local -xvf $FileName cat >> ~/.bashrc << 'EOF' export GOPATH=$HOME/go export PATH=/usr/local/go/bin:$PATH:$GOPATH/bin -
random-robbie created this gist
Apr 26, 2018 .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,7 @@ wget https://storage.googleapis.com/golang/go1.10.1.linux-armv6l.tar.gz sudo tar -C /usr/local -xvf go1.10.1.linux-armv6l.tar.gz cat >> ~/.bashrc << 'EOF' export GOPATH=$HOME/go export PATH=/usr/local/go/bin:$PATH:$GOPATH/bin EOF source ~/.bashrc