Standard Way to Install Golang
Overview
This is exactly what is described on the official Golang site.

Download and install - The Go Programming Language
I’m writing this both as a reference for explanations in other Golang-related articles and as a memo for myself.
Environment
- CentOS Linux release 7.3.1611 (Core)
Steps
I recommend installing the latest version that matches your environment from Golang Official - Downloads.
- Build from source
1 | $ cd /usr/local/src |
- Configure PATH
1 | $ sudo cat << 'EOF' | sudo tee /etc/profile.d/golang.sh |
- Verify
1 | $ go version |
That completes the Golang installation.
Standard Way to Install Golang
https://kenzo0107.github.io/en/2017/02/03/standard-instalation-golang/
