Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Thanks, a very good user guide. I had used installer_linux but always timeout.
Great post thank you greatly!
I had to add a GOBIN path value for go1.11.5.linux-amd64
Explaining some Linux’s apps such as tar is amazing. It is great tutorial like the majority of D.O tutorials.
hi sir,
I installed go 1.15 and choose my home directory for setup . added below in profile file
export GOROOT=$HOME/go export GOPATH=$HOME/work export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
But go command works after running the below command when ever I open terminal newly
source ~/.profile
is there any to run go command without refreshing profile every time
Important Note: you must use flag -L when curl’ing. If you do not, you’re not actually getting any data and the checksum will not match.
If you do: curl -O -L <url_of_current_version>
…then once you sha256sum the file, it will match Google’s DL page.
There is a much better way to do this that allows multiple versions to be installed so you can switch between them as needed.
I’ve detailed the process here https://github.com/jsnfwlr/install-guides/blob/main/ubuntu/go.md
this was really really helpful that i was forced to comment and say how good it was
If you installed the latest version of Go (1.16 as of this comment), you may need to initialize Go modules in your directory to avoid getting this error:
go install: version is required when current directory is not in a module
all you need to do to initialize your directory to use Go modules, type this command:
go mod init
then type this command:
go mod tidy
it creates a single file called go.mod and then you should be able to carry on with the instructions.