1.报错提示:Failed to build the application: go: finding module for package github.com/astaxie/beego/server/web
原因:最新版的go启用了go.mod模式,也就是包管理工具,而管理包的目录未安装相应的模块
解决方案,关掉go.mod
go env -w GO111MODULE=off
2.报错提示:cannot find package "github.com/astaxie/beego"
在安装过程中还会出现一个问题就是 上述指令都没问题的情况下 在bee run的时候报错 提示缺失文件
检查GOPATH目录确实缺少src/github.com/... 一系列文件
就进行一下修改
C:\Windows\System32\drivers\etc 在etc里面找到hosts
修改如下:
140.82.114.3 github.com
199.232.5.194 github.global.ssl.fastly.net
修改完成之后 去执行上述命令
go get -u github.com/astaxie/beego
go get -u github.com/beego/bee
网友评论