我正在尝试在 Windows Vista 上安装 go-sql-driver,但我遇到了GOPATH
.
我按照建议安装了 git,并GOPATH
在 Windows 中使用 path 添加为新的用户环境C:/users/A/desktop/go
。
我 go get github.com/go-sql-driver/mysql
在命令行中运行,但它给了我这个错误:
C:\>go get github.com/go-sql-driver/mysql
go: missing Git command. See http://golang.org/s/gogetcmd
package github.com/go-sql-driver/mysql: exec: "git": executable file not found in %PATH%
当我查看http://golang.org/s/gogetcmd时,它只是说下载 git。但它已经下载到我的机器上。
我还继续创建了一个新的环境变量,PATH
并将其路径设置为安装 git 的目录,但这也无济于事。
我究竟做错了什么?