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!
Hi, thanks for the tutorial, I was up and running in maybe 10 seconds! Question, how do you uninstall / remove the “hello” app?
Please, please, please do not suggest people set GOROOT. Please remove this incorrect advice.
Excellent tutorial, thank you! I was able to install it quickly, after having difficulty trying to follow go instructions earlier today- golang.org
Thanks much for the help!
Eric
Important Note: you must use flag -L when curl’ing. If you do not, you’re not actually getting any data (due to redirects) 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.
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.