0
輸入'go install'時出現此錯誤消息。GoLang:在安裝時出現此錯誤
[email protected]:~/Scripts/Enum/gobuster# go install
go install: no install location for directory /root/Scripts/Enum/gobuster outside GOPATH
For more details see: go help gopath
我'去env'如下。
[email protected]:~/Scripts/Enum/gobuster# go env
GOARCH="386"
GOBIN=""
GOEXE=""
GOHOSTARCH="386"
GOHOSTOS="linux"
GOOS="linux"
GOPATH="/root"
GORACE=""
GOROOT="/usr/lib/go"
GOTOOLDIR="/usr/lib/go/pkg/tool/linux_386"
GO15VENDOREXPERIMENT="1"
CC="gcc"
GOGCCFLAGS="-fPIC -m32 -pthread -fmessage-length=0"
CXX="g++"
CGO_ENABLED="1"
有人可以幫忙嗎? 謝謝。
你的代碼是不是在你的GOPATH。它需要位於'$ GOPATH/src /'的子目錄中。請參閱[如何編寫Go代碼](https://golang.org/doc/code.html) – JimB
謝謝JimB,它工作正常。 –