beego安装
Posted dennylau
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了beego安装相关的知识,希望对你有一定的参考价值。
beego和bee安装问题解决
如果使用go mod模式,直接安装bee时会报错:
复制代码
go: github.com/beego/bee imports
github.com/beego/bee/cmd imports
github.com/beego/bee/cmd/commands/dlv imports
github.com/derekparker/delve/service: github.com/derekparker/delve@v1.3.1:
parsing go.mod:
module declares its path as: github.com/go-delve/delve
but was required as: github.com/derekparker/delve
复制代码
主要参考URL:
http://www.678fly.cn/d/3-go-mod-bee
一、创建一个 go mod 下的文件夹
mkdir test
cd test
go mod init test
二、在 go.mod 内把 bee 的源替换掉,如下所示:
github.com/realguan/bee 是我 fork 了 github.com/beego/bee 的源码,进行了源代码更改:
module test
replace github.com/beego/bee v1.10.0 => github.com/realguan/bee v1.12.1
go 1.12
三、开始正式安装 beego 和 bee
export GOPROXY=https://goproxy.io
go get -u github.com/astaxie/beego
go get -u github.com/beego/bee
以上如果没报错,那就成功了。
四、接下来测试:
cd test
bee new hello // 创建项目
cd src/hello // 进入项目目录
go mod init hello
bee run // 大功告成
以上是关于beego安装的主要内容,如果未能解决你的问题,请参考以下文章