介紹
? ? ? ? bitcoin的go語言版本1.12
安裝
下載地址:
? ? ? ? https://github.com/btcsuite/btcd
執(zhí)行以下命令:
? ? ? ? $ go get -u github.com/Masterminds/glide
? ? ? ? $ git clone https://github.com/btcsuite/btcd $GOPATH/src/github.com/btcsuite/btcd
? ? ? ? $ cd $GOPATH/src/github.com/btcsuite/btcd
因為國內(nèi)很多工具類無法下載崇渗,需要翻墻矮冬,或者修改源
? ? ? ? $ rm -rf ~/.glide
? ? ? ? $ mkdir -p ~/.glide
? ? ? ? $ glide mirror set https://golang.org/x/mobile https://github.com/golang/mobile --vcs git
? ? ? ? $ glide mirror set https://golang.org/x/crypto https://github.com/golang/crypto --vcs git
? ? ? ? $ glide mirror set https://golang.org/x/net https://github.com/golang/net --vcs git
? ? ? ? $ glide mirror set https://golang.org/x/tools https://github.com/golang/tools --vcs git
? ? ? ? $ glide mirror set https://golang.org/x/text https://github.com/golang/text --vcs git
? ? ? ? $ glide mirror set https://golang.org/x/image https://github.com/golang/image --vcs git
? ? ? ? $ glide mirror set https://golang.org/x/sys https://github.com/golang/sys --vcs git
安裝依賴包
? ? ? ? $ glide init
? ? ? ? $ glide install
編譯工程
? ? ? ? $ go install . ./cmd/...
異晨饰觯現(xiàn)象:
1.
問題:Update failed for golang.org/x/crypto/ripemd160: Cannot detect VCS
解決方式:修改btcd項目目錄下的glide.yaml 包中的 package: golang.org/x/crypto/ripemd160 為 package: golang.org/x/crypto
然后重新執(zhí)行以下命令 進行更新安裝
$ glide up
2.
問題:Unable to export dependencies to vendor directory: Error moving files: exit status 1
解決方案:
對文件 $GOPATH\src\github.com\Masterminds\glide\path\winbug.go 做如下修改:
cmd := exec.Command("cmd.exe", "/c", "xcopy /s/y", o, n+"\\")
然后 執(zhí)行一下命令:
$ cd $GOPATH\src\github.com\Masterminds\glide
$ go build glide.go
$ cp glide $GOPATH\bin
重新打開命令窗口后執(zhí)行以下命令
$ cd $GOPATH\src\github.com\btcsuite\btcd
$ glide up