bee: command not found

根据beego官网资料,如下:

Windows 平台下输入:

>cd %GOPATH%/src
>bee new hello
>cd hello
>bee run hello

运行:bee new hello 的时候出现 bee:command not found 错误。

这时我们需要切换到 bee目录,运行 go build 命令;如果运行成功会生成bee.exe 文件

当时没这么幸运 go build 运行失败,并提示: cannot find package "github.com/smartystreets/goconvey/convey" in any of:

这时试着运行 go get github.com/smartystreets/goconvey 命令还是出错:can't load package: package github.com/smartystreets/goconvey: no buildable Go source files in %GOPATH% \src\github.com\smartystreets\goconvey

直接在浏览器打开 github.com/smartystreets/goconvey 是有这个项目的,

解决方法:下载 github.com/smartystreets/goconvey 解压并复制全部文件到 %GOPATH% \src\github.com\smartystreets\goconvey;运行 go get github.com/smartystreets/goconvey,此时再运行 go build 成功生成 bee.exe

注意:运行bee带上完整地址  ./github.com/beego/bee/bee new hello

最后,运行:go run hello/main.go 项目成功运行此时可以打开欢迎页面 http://127.0.0.1:8080/

你可能感兴趣的:(go,beego)