# update ubuntu
> sudo apt-get update
# install make
> sudo apt-get install build-essential
# install gcc
> sudo apt-get install cmake gcc> wget https://golang.org/dl/go1.15.8.linux-amd64.tar.gz
> tar -C /usr/local -xzf go1.15.8.linux-amd64.tar.gzSetup paths in .profile
> vi .profileexport GOPATH=$HOME/go
export PATH=$PATH:/usr/local/go/bin:$GOPATH/binVerify Go was installed and paths were set correctly
> go version
> echo $GOPATH