bash
go: go.mod file not found in current directory or any parent directory.
'go get' is no longer supported outside a module.
To build and install a command, use 'go install' with a version,
like 'go install example.com/cmd@latest'
For more information, see https://golang.org/doc/go-get-install-deprecation
or run 'go help get' or 'go help install'.
参考链接:https://go.dev/doc/go-get-install-deprecation
概述
从 Go 1.17 开始,go get
不推荐使用安装可执行文件。 go install
可以用它来代替。
在 Go 1.18 中,go get
将不再构建包;它仅用于添加、更新或删除go.mod
.具体来说, go get
将始终表现为该-d
标志已启用。
用什么代替
要在当前模块的上下文中安装可执行文件,请使用go install
不带版本后缀的 ,如下所示。这适用于go.mod
当前目录或父目录中文件的版本要求和其他指令。
`go install example.com/cmd
`
要安装可执行文件并忽略当前模块,请使用go install
版本 后缀,例如@v1.2.3
或@latest
,如下所示。与版本后缀一起使用时,go install
不读取或更新go.mod
当前目录或父目录中的文件。
`# Install a specific version.
go install example.com/cmd@v1.2.3
# Install the highest available version.
go install example.com/cmd@latest`