Wednesday, May 16, 2018

HOWTO : Install golang 1.10 on Ubuntu 18.04 LTS

The current version of golang in Ubuntu 18.04 LTS is 1.10.1 at the time of this writing.

Install

sudo apt update
sudo apt install golang


Check

go env
go version


Workspace

mkdir -p {,~/go/bin,~/go/pkg,~/go/src}

That's all! See you.