Skip to content

Instantly share code, notes, and snippets.

@random-robbie
Created April 26, 2018 14:16
Show Gist options
  • Star 34 You must be signed in to star a gist
  • Fork 9 You must be signed in to fork a gist
  • Save random-robbie/1f7f94beda1221b8125b62abe35f45b6 to your computer and use it in GitHub Desktop.
Save random-robbie/1f7f94beda1221b8125b62abe35f45b6 to your computer and use it in GitHub Desktop.
Install Go Lang 1.10.1 on Raspberry Pi 3
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
@initialed85
Copy link

Nice one, thx

@zack-wang
Copy link

Pretty good!

@codingchili
Copy link

Thanks, works on pi zero too.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment