1、这里默认大家已经搭建好了go语言的开发环境。
2、这里需要安装Beego源码和Bee开发工具,执行以下这两条命令:
3、执行 go get -u -v github.com/astaxie/beego 命令时有失败,报错信息如下:
大概是访问不了https://google.golang.org/protobuf/encoding/ 地址,解决方法如下:
在Go的"$GOPATH"目录下的src目录下,创建“google.golang.org” 和“protobuf”两个文件夹:“src\google.golang.org\protobuf” 。
使用git clone命令,拉取 “https://github.com/protocolbuffers/protobuf-go.git” ,将下载的文件放到protobuf文件夹中。
执行 go get -u github.com/beego/bee 失败,拉取文件信息失败:
解决方法如下:
windows10下更改golang的配置:
set GO111MODULE=on
set GOPROXY=https://goproxy.io
再次执行"go get -u github.com/beego/bee "命令,成功了。
在$GOPATH/src下测试bee命令:
说明bee 工具安装成功。