Tendermint installation (Windows 10)

Previous blog has described in detail how to install go with VSCode environment https://blog.csdn.net/guoyihaoguoyihao/article/details/104522426 , we know tendermint can use language to go, so this record about how configuration tendermint windows environment.
A , in GOPATH / src / tendermint catalog:

$ git clone --recursive https://github.com/tendermint/tendermint.git

Two , into the GOPATH\src\github.com\tendermint\tendermint\cmd\tendermintexecution

go build

Enter GOPATH\src\github.com\tendermint\tendermint\abci\cmd\abci-cliexecution

go build

Three , copy the two .exe generated under the two directories to GOPATH / bin directory under Here Insert Picture Description
four , open cmd into the GOPATH / bin directory execute:

tendermint version
abci-cli version

If successful installation is complete.
Here Insert Picture Description
Overall completion process does not prompt anything wrong, go build command fails if run with cmd or VSCode terminal, you can use Git Bash to perform a try.
It is like this the ~

Published 28 original articles · won praise 5 · Views 4503

Guess you like

Origin blog.csdn.net/guoyihaoguoyihao/article/details/104537782