PhaniV
PhaniV

Reputation: 11

Hyperledger install failure bccsp/factory/pluginfactory.go:12:2: cannot find package "plugin"

Hyperledger Fabric install is failure

Upvotes: 0

Views: 574

Answers (1)

Gari Singh
Gari Singh

Reputation: 12053

The problem is that you are using the wrong version of Go. Fabric v1.0.x uses Go 1.7.5 Fabric v1.1.x uses Go 1.9.2 Fabric master branch uses Go 1.10

Looks like you are trying to build from the release-1.1 branch (the default branch), so you need Go 1.9.2. The error is due to the fact that the plugin package was introduced in Go 1.8

Upvotes: 2

Related Questions