本文阅读量 次
Go 命令¶
命令汇总¶
命令 | 说明 |
---|---|
go run | |
go build | |
go test | |
go mod | |
go install | |
go env |
go env
¶
go install
¶
查询当前的安装路径
go list -f '{{.Target}}'
D:\devapps\gopath\bin\hello.exe
通过设置环境变量 GOBIN
可以改变安装目录
export PATH=$PATH:/path/to/your/install/directory
set PATH=%PATH%;C:\path\to\your\install\directory
go env -w GOBIN=/path/to/your/bin
go env -w GOBIN=C:\path\to\your\bin
环境变量¶
Go 相关的环境变量主要有
名称 | 说明 |
---|---|
GOBIN | |
GOPATH | |
GOPROXY | |
GOROOT | |
GOSUMDB | |
GONOSUMDB |