Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to run go install: no install location for directory outside GOPATH

When I try to run go install I get the following:

go install golang-book/chapter11/math: mkdir /Users/Swanros/Go/pkg/darwin_amd64: permission denied

Then I try sudo go install and get the following:

go install: no install location for directory /Users/Swanros/Go/src/golang-book/chapter11/math outside GOPATH

Here's my go env:

GOARCH="amd64"
GOBIN=""
GOCHAR="6"
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="darwin"
GOPATH="/Users/Swanros/Go"
GORACE=""
GOROOT="/usr/local/go"
GOTOOLDIR="/usr/local/go/pkg/tool/darwin_amd64"
CC="clang"
GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fno-common"
CXX="clang++"
CGO_ENABLED="1"

echo $GOPATH outputs:

/Users/Swanros/Go

What am I missing? I've been dealing with this all morning.

like image 845
Oscar Swanros Avatar asked Dec 30 '25 18:12

Oscar Swanros


1 Answers

It looks like a permission problem, changing the ownership on $GOPATH should fix it.

sudo chown -R $USER $GOPATH

I'm guessing that you somehow installed something as root that changed the permission of $GOPATH/pkg.

like image 130
OneOfOne Avatar answered Jan 01 '26 08:01

OneOfOne



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!