Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在我的 MacBook 上安装 Golang。
根据多个来源(示例),Golang 1.8 及更高版本会自动设置 GOPATH。
如果我go env gopath在终端中运行该命令,则不会返回任何内容。这是否意味着未设置 GOPATH 变量?
go env gopath
我尝试使用export GOPATH=$HOME/go(根据此示例)手动设置它。
export GOPATH=$HOME/go
然而,这仍然没有回报。
我已经尝试重新安装 Golang。这适用于我的 Windows 机器,而不是 MacOS。
Go 将为 GOPATH 使用默认值。运行go env命令以查看值。
go env
go env GOPATH仅针对 GOPATH 值运行命令。
go env GOPATH
我认为您想运行go env GOPATH而不是go env gopath. 注意大小写的不同。只是运行go env会列出所有go变量。
go