Skip to content

Instantly share code, notes, and snippets.

@ejdoh1
Created May 24, 2019 01:25
Show Gist options
  • Select an option

  • Save ejdoh1/e5b49558bacfffbf16ff03ede21fd915 to your computer and use it in GitHub Desktop.

Select an option

Save ejdoh1/e5b49558bacfffbf16ff03ede21fd915 to your computer and use it in GitHub Desktop.
Install Go Lang 1.12.5 on Raspberry Pi 3 B+
cd $HOME
FileName='go1.12.5.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
EOF
source ~/.bashrc
@ejdoh1

ejdoh1 commented May 24, 2019

Copy link
Copy Markdown
Author

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