How to Install Go on Ubuntu 18.04/20.04

· 165 words · 1 minute read

Ubuntu does come with a version of go (installable through apt install go) but it won’t be as up-to-date as downloading it directly. And I know many gophers like using the latest version.

To begin with we’ll start by downloading the latest version and, once downloaded, we extract it into a folder we can work with (you can find the latest version here).

1
wget /go/go1.14.2.linux-amd64.tar.gz
1
sudo tar -C /usr/local -xvf go1.14.2.linux-amd64.tar.gz

We then need to add some environment variables so Go knows where our work/code directory is located. GOPATH should point to the folder where you’ll be working in. This folder once setup should have your src, bin and pkg folders.

1
vim ~/.profile

Add this to the bottom:

1
2
export GOPATH=$HOME/go
export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin

Press :wq to exit and run this to load your changes:

1
source ~/.profile

As the final test, if we run this:

1
go version

We should see: go version go1.14.2 linux/amd64

Finally, some clean-up

1
rm go1.14.2.linux-amd64.tar.gz

Image of Author Edd Turtle

Author:  Edd Turtle

Edd is the Lead Developer at Hoowla, a prop-tech startup, where he spends much of his time working on production-ready Go and PHP code. He loves coding, but also enjoys cycling and camping in his spare time.

See something which isn't right? You can contribute to this page on GitHub or just let us know in the comments below - Thanks for reading!