【Go】bee工具安装报错:module declares its path as: github.com/go-delve/delve but was required as: github.com

一、【报错】

通过go get下载bee工具时报错:

>>> go get github.com/beego/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/[email protected]: parsing go.mod:
        module declares its path as: github.com/go-delve/delve
                but was required as: github.com/derekparker/delve

二、【解决】

1、打开 https://github.com/beego/bee/releases

2、找到系统对应版本

3、解压出一个文件夹,把其中的bee可执行文件放到你的$GOPATH/bin下即可

4、执行 bee version

参考:

1、 https://www.lookcos.cn/?p=556

猜你喜欢

转载自blog.csdn.net/BobYuan888/article/details/106843083