DEV Community

Go Lang Installation

Krishna Tej Ch on April 17, 2019

Prerequisutes go supports a wide range of operating systems. There are two ways go can be installed on the system. Binaries Buildin...
Collapse
 
rbo13 profile image
Richard Burk

Nice article, Krishna! Some things to consider, if you are running the latest version of Go, $GOPATH is not necessary since we have GOMODULES! Yaaay 🥳🎉 however, GOMODULES is not enabled by default, you need to set your environment variable to export GO111MODULE=on See this blog post for more information blog.golang.org/using-go-modules.

Collapse
 
chkrishnatej profile image
Krishna Tej Ch

Thanks for pointing out, Richard. I'll update the post shortly. 🙂