環境配置:
Git
GO
docker
下載 vagrant工具,並安裝:https://www.vagrantup.com/downloads.html
下載 vitualbox並安裝、運行:http://sw.bos.baidu.com/sw-search-sp/software/6bda11b7d3256/VirtualBox-5.1.30.18389-Win.exe
步驟:
1.配置GO語言環境,fabric使用的是GO語言開發
$GOROOT是go安裝目錄
$GOPATH是自訂的目錄
在GOPATH目錄下面建立src,bin,pkg目錄,在src目錄下建立github.com\hyperledger目錄
2.進入 $GOPATH\src\github.com\hyperledger,執行:
git clone https://github.com/hyperledger/fabric.git
進入 $GOPATH\src\github.com\hyperledger\fabric,執行:
git checkout v1.0.3
3.進入 $GOPATH\src\github.com\hyperledger\fabric\devenv,執行:vagrant.exe up(此過程比較長,而且可能會有碰到很多的問題,耐心等待 )
比如:
在 $GOPATH\src\github.com\hyperledger\fabric\devenv下,執行vagrant.exe up,先執行的是Vagrantfile,在Vagrantfile中調用setup.sh。
在setup.sh中
使用apt-get命令進行下載的時候,通常有的Mac上沒有這個命令,下邊是解決方案:https://www.jianshu.com/p/8120c4f1b6a6
package golang.org/x/tools/go/gcexportdata: unrecognized import path "golang.org/x/tools/go/gcexportdata" (https fetch: Get https://golang.org/x/tools/go/gcexportdata?go-get=1: net/http: TLS handshake timeout)Makefile:47: recipe for target 'gotool.golint' failed
一般碰到這個問題是在$GOPATH\src下缺少golang.org ,下載好golang.org
然後拷貝到$GOPATH\src\github.com\hyperledger\fabric\gotools\src檔案夾下,然後執行vagr
4.進入虛擬機器環境:vagrant.exe ssh
5.下載fabric官方的docker