Hyperledger Fabric学习(十三)1.4版本的搭建
准备环境 go 1.13或以上版本 docker ce-17.06或以上版本 准备工作 拉取项目 ## 进入$GOPATH/src/github.com/hyperledger cd $GOPATH /src/github.com/hyperledger ## 拉取1.4版本的fabric项目 git clone -b release-1.4 https://github.com/hyperledger/fabric.git ## 拉取1.4版本的fabric-samples项目 git clone -b release-1.4 https://github.com/hyperledger/fabric-samples.git 编译可执行文件 ## 进入$GOPATH/src/github.com/hyperledger/fabric cd $GOPATH /src/github.com/hyperledger/fabric ## 编译可执行文件 make release 拷贝可执行文件到fabric-samples项目中 # 拷贝可执行文件到fabric-samples项目中 cp -r $GOPATH /src/github.com/hyperledger/fabric/release/linux-amd64/bin $GOPATH /src/github.com