Skip to content

Instantly share code, notes, and snippets.

@s00500
Last active December 19, 2020 09:10
Show Gist options
  • Save s00500/4c52056586c2f6b69aa6aa86cbb3737d to your computer and use it in GitHub Desktop.
Save s00500/4c52056586c2f6b69aa6aa86cbb3737d to your computer and use it in GitHub Desktop.
Install Go 1.15.3 on RPI
wget https://dl.google.com/go/go1.15.6.linux-armv6l.tar.gz
sudo tar -C /usr/local -xzf go1.15.6.linux-armv6l.tar.gz
rm go1.15.6.linux-armv6l.tar.gz
mkdir ~/go
echo "PATH=$PATH:/usr/local/go/bin" >> ~/.bashrc
echo "GOPATH=$HOME/go" >> ~/.bashrc
source ~/.bashrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment