You can follow below steps to install Go 1.8 on Fedora / Ubuntu. (It should work for other Linux distribution as well but it is only tested for Ubuntu / Fedora).
Step 1:
Download the Go 1.8 bundle by clicking here.
Step 2:
Extract the downloaded bundle using below command,
tar -C /usr/local -xzf go1.8.linux-amd64.tar.gz
Step 3:
Add below to your to your path variable, you can add this to either of bash_profile or /etc/profile.
export PATH=$PATH:/usr/local/go/bin
Reload the configuration & GO will be available to use.