go build APP时报错
来源:7-12 案例实战外部服务B

慕哥4405024
2018-10-11
老师,我有两个问题,希望能够解答,谢谢!
1)
在go build APP的时候报了如下的错误:
root@ubuntu01:application# go build
root@ubuntu01:application# go build
# github.com/hyperledger/fabric/vendor/google.golang.org/grpc/connectivity
../../vendor/google.golang.org/grpc/connectivity/connectivity.go:46:3: undefined: grpclog.Errorf
# github.com/hyperledger/fabric/vendor/github.com/hyperledger/fabric-sdk-go/pkg/core/config
../../vendor/github.com/hyperledger/fabric-sdk-go/pkg/core/config/config.go:61:28: backend.configViper.MergeInConfig undefined (type *viper.Viper has no field or method MergeInConfig)
../../vendor/github.com/hyperledger/fabric-sdk-go/pkg/core/config/config.go:93:27: backend.configViper.MergeConfig undefined (type *viper.Viper has no field or method MergeConfig)
有看到两个同样的提问,知道是一些依赖没有下载,但是不太明白是哪一个依赖,是google.golang.org/下边的genproto 和 grpc这两个依赖吗?我已经下了这两个,但是我要把它们放到哪里才可以呢?我直接用我下载的替换掉fabric/vendor/google.golang.org/下面的两个,但是编译还是报其他错误。请问我该怎么解决这个build的问题?
2)在APP的main.go文件里有看有如下的import :
import (
...
"github.com/gin-gonic/gin"
"github.com/hyperledger/fabric-sdk-go/pkg/client/channel"
"github.com/hyperledger/fabric-sdk-go/pkg/client/event"
"github.com/hyperledger/fabric-sdk-go/pkg/client/ledger"
"github.com/hyperledger/fabric-sdk-go/pkg/client/resmgmt"
"github.com/hyperledger/fabric-sdk-go/pkg/core/config"
"github.com/hyperledger/fabric-sdk-go/pkg/fabsdk"
)
按照go语言的包管理,在编译的时候应该是到$GOPATH/src/github.com
目录下面查找这些包吧?但是我$GOPATH/src/github.com
这个目录下面没有github.com/gin-gonic/gin这个包,反而在.../fabric/vendor/github.com/下面有。也就是说上面的那些import是到.../fabric/vendor/github.com/去找,而不是到$GOPATH/src/
去找,这不是跟golang的包管理冲突了吗?这是为什么?
1回答
-
自游蜗牛
2018-10-11
亲,你好。
第一个问题是由于fabric-sdk-go没有自带vendor,所以引用的包更新以后会造成混乱,你可以按照sdk文档里的做法构建vendor
# cd $GOPATH/src/github.com/hyperledger/fabric-sdk-go/
# make populate
第二个问题:golang的包管理是先到vendor下找,没有再找本地的GOPATH找,gin是我加入到vendor中的,原生的fabric的没有。
祝你学习愉快!
10
相似问题