프로그래밍 언어/Go
go install: no install location for directory ... outside GOPATH
fdsa_000
2020. 12. 29. 16:56
ERROR MESSAGE: "go install: no install location for directory ... outside GOPATH"
export GOPATH=~/go
mkdir ~/go/bin
export GOBIN=$GOPATH/bin
Go install fails with error: no install location for directory xxx outside GOPATH
~/src/go-statsd-client> echo $GOPATH /Users/me/gopath ~/src/go-statsd-client> echo $GOROOT /usr/local/Cellar/go/1.1.1\ ~/src/go-statsd-client> go install go install: no install location for
stackoverflow.com