Reputation: 11
Hyperledger Fabric install is failure
Upvotes: 0
Views: 574
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