我想去做一个去:
go get github.com/go-sql-driver/MysqL
package github.com/go-sql-driver/MysqL: cannot download,$GOPATH not set. For more details see: go help gopath
当我做一个go env,Go值的列表如下所示:
ubuntu@ip-xxx-x-xx-x:~$ go env GOARCH="amd64" GOBIN="" GOCHAR="6" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOOS="linux" GOPATH="" GORACE="" GOROOT="/usr/lib/go" GOTOOLDIR="/usr/lib/go/pkg/tool/linux_amd64" CC="gcc" GOGCCFLAGS="-g -O2 -fPIC -m64 -pthread" CGO_ENABLED="1"
显然GOPATH没有设置,我该如何设置呢?
只需将以下行添加到〜/ .bashrc,这将持续。但是,您可以使用其他路径作为GOPATH,而不是$ HOME / go在我的示例中。
原文链接:https://www.f2er.com/ubuntu/352915.htmlexport GOPATH=$HOME/go export PATH=$PATH:$GOROOT/bin:$GOPATH/bin