英文:
Go path and setup
问题
我安装了适用于 Windows 64 位的 Go 二进制文件,并设置了 Go 路径,如下图所示:
我还从 Git 上下载了它。为什么它找不到 go 命令呢?
英文:
I installed go binary for windows 64 and set up Go Paths like
I also downloaded it from git. Why wont it find the go command?
答案1
得分: 1
我也从git上下载了它。
Go仓库(github.com/golang/go)不会包含go二进制文件。
只有golang.org/dl/上的msi或存档文件(例如go1.4.1.windows-amd64.zip)才会包含。
你可以将存档文件解压到任何位置,并将GOROOT
设置为该位置,%GOROOT%\bin
将指向go二进制文件。
英文:
> I also downloaded it from git
The Go repo (github.com/golang/go) wouldn't include the go binary.
Only the msi or the archive at golang.org/dl/ would (like go1.4.1.windows-amd64.zip) would.
You can unzip the archive anywhere, and set GOROOT
to it, and %GOROOT%\bin
will point the the go binary.
答案2
得分: 1
在用户变量下添加:
GOPATH: C/:go
在系统变量下添加:
C:/go
英文:
Add under user variables:
GOPATH: C/:go
Add under systems variable:
C:/go
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论