Created
April 26, 2018 14:16
-
-
Save random-robbie/1f7f94beda1221b8125b62abe35f45b6 to your computer and use it in GitHub Desktop.
Install Go Lang 1.10.1 on Raspberry Pi 3
This file contains 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
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 |
Nice one, thx
Pretty good!
Thanks, works on pi zero too.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
works for go1.11.1 as well