beego / bee

Bee is a tool for helping develop with beego app framework.
Apache License 2.0
1.44k stars 920 forks source link

"go get github.com/beego/bee“ install error #771

Closed wangfly80 closed 3 years ago

wangfly80 commented 3 years ago

when i ran "go get github.com/beego/bee“ ,error: main.go:21:2: cannot find package "github.com/beego/bee/v2/cmd" in any of: /usr/lib/go-1.6/src/github.com/beego/bee/v2/cmd (from $GOROOT) $HOME/go/src/github.com/beego/bee/v2/cmd (from $GOPATH) main.go:22:2: cannot find package "github.com/beego/bee/v2/cmd/commands" in any of: /usr/lib/go-1.6/src/github.com/beego/bee/v2/cmd/commands (from $GOROOT) $HOME/go/src/github.com/beego/bee/v2/cmd/commands (from $GOPATH) main.go:23:2: cannot find package "github.com/beego/bee/v2/config" in any of: /usr/lib/go-1.6/src/github.com/beego/bee/v2/config (from $GOROOT) $HOME/go/src/github.com/beego/bee/v2/config (from $GOPATH) main.go:24:2: cannot find package "github.com/beego/bee/v2/utils" in any of: /usr/lib/go-1.6/src/github.com/beego/bee/v2/utils (from $GOROOT) $HOME/go/src/github.com/beego/bee/v2/utils (from $GOPATH)

flycash commented 3 years ago

run

go get github.com/beego/bee/v2@latest
alivardar commented 3 years ago

GO111MODULE=on go get github.com/beego/bee

solved my problem

flycash commented 3 years ago

GO111MODULE=on go get github.com/beego/bee

solved my problem

Yes, now we are using GO mod.