https://github.com/iamtraction/go-installer
A seemless way to install Go in linux based systems.
https://github.com/iamtraction/go-installer
bash go golang hacktoberfest installer script
Last synced: 2 months ago
JSON representation
A seemless way to install Go in linux based systems.
- Host: GitHub
- URL: https://github.com/iamtraction/go-installer
- Owner: iamtraction
- License: gpl-3.0
- Created: 2019-05-15T21:23:18.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-10-11T14:22:33.000Z (over 5 years ago)
- Last Synced: 2025-01-17T22:44:22.015Z (about 1 year ago)
- Topics: bash, go, golang, hacktoberfest, installer, script
- Language: Shell
- Homepage:
- Size: 18.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Go Installer
This is small `bash` script to make the installation process of Go much simpler
and seemless in Linux and macOS.
## Usage
It's as simple as running the following command
```
curl -sL https://raw.github.com/k3rn31p4nic/go-installer/master/goinstaller.sh -o goinstaller.sh && chmod +x goinstaller.sh && ./goinstaller.sh
```
For example, if you want to install version `1.13.5`, you'd run the following command
```bash
curl -sL https://raw.github.com/k3rn31p4nic/go-installer/master/goinstaller.sh -o goinstaller.sh && chmod +x goinstaller.sh && ./goinstaller.sh 1.13.5
```