第一步 Go官网下载安装
第二部 进入Gopath目录。安装beego框架
beego工具报错。输入
go env -w GOPROXY=https://goproxy.io,direct
go env -w GO111MODULE=on
参考地址https://blog.csdn.net/longchenghui20/article/details/107251152/
beego安装后 bee new 时报错"bee: command not found"
需要把build的出来的
mac 默认GOROOT地址 '/usr/local/go' 拷贝到下面的bin文件中,然后双击运行一下'bee'
命令 "bee run" 报错
c.TplName undefined (type *MainController has no field or method TplName)
发现MainController里面有个报错 " c.TplName = "index.tpl""
进入 beego.Controller 看一下应该是 TplNames ,'TplName' 改成
'TplNames'就行了
应该是工具更新不同步的小问题