With go 1.17 go get doesn't install binaries anymore (see https://golang.org/doc/go-get-install-deprecation)
The documentation at https://golang.org/doc/manage-install is out of date it should use the new go install syntax:
go install golang.org/dl/go1.10.7@latest
instead of the current go get golang.org/dl/go1.10.7 which errors:
go get: installing executables with 'go get' in module mode is deprecated.
Use 'go install pkg@version' instead.
For more information, see https://golang.org/doc/go-get-install-deprecation
or run 'go help get' or 'go help install'.
With go 1.17
go getdoesn't install binaries anymore (see https://golang.org/doc/go-get-install-deprecation)The documentation at https://golang.org/doc/manage-install is out of date it should use the new go install syntax:
go install golang.org/dl/go1.10.7@latestinstead of the current
go get golang.org/dl/go1.10.7which errors: