DEV Community

Discussion on: Go Lang Installation

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. 🙂