/pigo

Go installation and removal scripts for Raspberry Pi ARM64

Primary LanguageShellMIT LicenseMIT

pigo

Go installation and removal scripts for Raspberry Pi ARM64

get.sh

get.sh is a Bash script designed to simplify the process of installing Go on a Raspberry Pi (64-bit) system. It automatically downloads the specified Go version, configures the environment variables, and sets up the Go workspace.

Usage

./get.sh <go_version>

Replace <go_version> with the desired Go version number (e.g. 1.21.3).

The script will download and install the specified Go version and set up the necessary environment variables. e.g.

./get.sh 1.21.3

gone.sh

gone.sh is a companion script that allows you to remove Go from your system. It cleans up the installed Go files and removes the related environment variables.

Usage

./gone.sh

Notes

get.sh and gone.sh require set executable permissions before running them. e.g.

chmod +x get.sh

chmod +x gone.sh

Additional Information

Go Official Website - Information about the Go programming language, documentation, and resources.

Go Downloads - Downloads page to find available Go versions.