Skip to content

Instantly share code, notes, and snippets.

@dwdraju
Created October 22, 2018 10:02
Show Gist options
  • Save dwdraju/f5a5f16caabba2cf500cf12f24968f0f to your computer and use it in GitHub Desktop.
Save dwdraju/f5a5f16caabba2cf500cf12f24968f0f to your computer and use it in GitHub Desktop.
Install GO on Ubuntu 16.04

Get Golang version: https://golang.org/dl/

wget https://dl.google.com/go/go1.11.1.linux-amd64.tar.gz
tar -xvf go1.11.1.linux-amd64.tar.gz
sudo mv go /usr/local
export GOROOT=/usr/local/go

export GOPATH=$HOME/GoProjects

export PATH=$GOPATH/bin:$GOROOT/bin:$PATH
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment