Installing Golang from Source on RPi-OS for arm64
By R. S. Doiel, 2022-02-18
This are my quick notes on installing Golang from source on the Raspberry Pi OS 64 bit.
- Get a working compiler
- go to https://go.dev/dl/ and download go1.17.7.linux-arm64.tar.gz
- untar the tarball in your home directory (it’ll unpack to $HOME/go)
cd go/src
andmake.bash
- Move go directory to go1.17
- Clone go from GitHub
- Compile with the downloaded compiler
cd go/src
env GOROOT_BOOTSTRAP=$HOME/go1.17 ./make.bash
- Make sure
$HOME/go/bin
is in the path go version