-
-
Save pcgeek86/0206d688e6760fe4504ba405024e887c to your computer and use it in GitHub Desktop.
Revisions
-
pcgeek86 revised this gist
Nov 21, 2019 . No changes.There are no files selected for viewing
-
pcgeek86 revised this gist
Nov 21, 2019 . 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 @@ cd $HOME FileName='go1.13.4.linux-armv6l.tar.gz' wget https://dl.google.com/go/$FileName sudo tar -C /usr/local -xvf $FileName cat >> ~/.bashrc << 'EOF' -
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