beego 的安装
安装命令:
go get github.com/astaxie/beego
常见问题:
1、git 没有安装,请自行安装不同平台的 git,如何安装请自行搜索。
2、git https 无法获取,请配置本地的 git,关闭 https 验证:
(错误信息:fatal: unable to access ‘https://github.com/astaxie/beego/‘: OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054)
git config --global http.sslVerify false
beego 的升级
升级命令:
go get -u github.com/astaxie/beego
源代码升级:
用户访问 [https://github.com/astaxie/beego](https://github.com/astaxie/beego)
,下载源码,然后覆盖到 $GOPATH/src/github.com/astaxie/beego
目录,然后通过本地执行安装就可以升级了:
go install github.com/astaxie/beego