Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cmd/go: improve diagnostics for mod subcommands within $GOPATH/src #26365

Closed
davecheney opened this issue Jul 13, 2018 · 8 comments
Closed

cmd/go: improve diagnostics for mod subcommands within $GOPATH/src #26365

davecheney opened this issue Jul 13, 2018 · 8 comments
Labels
FrozenDueToAge modules NeedsFix The path to resolution is known, but the work has not been done.

Comments

@davecheney
Copy link
Contributor

Please answer these questions before submitting your issue. Thanks!

What version of Go are you using (go version)?

% go version
go version devel +8a330454dc Fri Jul 13 03:53:00 2018 +0000 darwin/amd64

Does this issue reproduce with the latest release?

yes

What operating system and processor architecture are you using (go env)?

% go env
GOARCH="amd64"
GOBIN=""
GOCACHE="/Users/dfc/Library/Caches/go-build"
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="darwin"
GOPATH="/Users/dfc"
GOPROXY=""
GORACE=""
GOROOT="/Users/dfc/go"
GOTMPDIR=""
GOTOOLDIR="/Users/dfc/go/pkg/tool/darwin_amd64"
GCCGO="gccgo"
CC="clang"
CXX="clang++"
CGO_ENABLED="1"
GOMOD=""
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/by/3gf34_z95zg05cyj744_vhx40000gn/T/go-build891243944=/tmp/go-build -gno-record-gcc-switches -fno-common"

What did you do?

Daves-MacBook-Pro(~/src/github.com/pkg/errors) % go mod -init -module github.com/pkg/errors
go: creating new go.mod: module github.com/pkg/errors
Daves-MacBook-Pro(~/src/github.com/pkg/errors) % cat go.mod 
module github.com/pkg/errors
Daves-MacBook-Pro(~/src/github.com/pkg/errors) % go mod -verify
go mod: cannot use outside module

What did you expect to see?

Not a failure

What did you see instead?

All go mod commands report

go mod: cannot use outside module
@myitcv
Copy link
Member

myitcv commented Jul 13, 2018

@davecheney looks like you're running these commands from within your GOPATH?

In which case, take a look through @rsc's answer in golang-dev:

https://groups.google.com/d/msg/golang-dev/a5PqQuBljF4/tYBmxfF4BgAJ

You'll need to set GO111MODULE=on to force module mode if you want to work with modules inside your GOPATH.

@myitcv myitcv added the modules label Jul 13, 2018
@davecheney
Copy link
Contributor Author

davecheney commented Jul 13, 2018 via email

@myitcv
Copy link
Member

myitcv commented Jul 13, 2018

@rsc @bcmills is it worth adding GO111MODULE to go env to help in these sorts of situations?

Feels like that might be a very common first question we'll ask people.

@davecheney
Copy link
Contributor Author

davecheney commented Jul 13, 2018 via email

@bcmills
Copy link
Contributor

bcmills commented Jul 13, 2018

I suspect we should do both of those things. 🙂

@bcmills bcmills changed the title cmd/go: cannot use outside module after go mod -init cmd/go: improve diagnostics for mod subcommands within $GOPATH/src Jul 13, 2018
@bcmills bcmills added the NeedsFix The path to resolution is known, but the work has not been done. label Jul 16, 2018
@FiloSottile
Copy link
Contributor

We should also show a helpful error for failed builds when a go.mod file was found and modules are off because of GOPATH.

@gopherbot
Copy link

Change https://golang.org/cl/124708 mentions this issue: cmd/go: diagnose 'go mod' in GOPATH/src better

@bcmills
Copy link
Contributor

bcmills commented Jul 19, 2018

Should be much improved now. Please reopen if you still run into confusing behavior.

@golang golang locked and limited conversation to collaborators Jul 19, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
FrozenDueToAge modules NeedsFix The path to resolution is known, but the work has not been done.
Projects
None yet
Development

No branches or pull requests

5 participants