Skip to content

Instantly share code, notes, and snippets.

@josefigueredo
Forked from random-robbie/install_go_pi.sh
Created December 25, 2018 22:51
Show Gist options
  • Save josefigueredo/415db6a370fcf45f58bb370d659cd844 to your computer and use it in GitHub Desktop.
Save josefigueredo/415db6a370fcf45f58bb370d659cd844 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment