https://github.com/fraserchapman/pigo
Go installation and removal scripts for Raspberry Pi ARM64
https://github.com/fraserchapman/pigo
arm64 golang installer raspberry-pi
Last synced: 2 months ago
JSON representation
Go installation and removal scripts for Raspberry Pi ARM64
- Host: GitHub
- URL: https://github.com/fraserchapman/pigo
- Owner: FraserChapman
- License: mit
- Created: 2023-10-20T15:40:41.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-08T13:55:03.000Z (over 2 years ago)
- Last Synced: 2025-04-15T13:57:18.326Z (about 1 year ago)
- Topics: arm64, golang, installer, raspberry-pi
- Language: Shell
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
```
Replace `` 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](https://go.dev/) - Information about the Go programming language, documentation, and resources.
[Go Downloads](https://go.dev/) - Downloads page to find available Go versions.