readme: update install instruction (#100)

This commit is contained in:
Zach 2017-08-24 11:02:14 -04:00 committed by Adrian Brink
parent 7f5f48b6b9
commit 01181721ad
1 changed files with 9 additions and 0 deletions

View File

@ -8,6 +8,15 @@ and the state machine (the application).
By using a socket protocol, we enable a consensus engine running in one process
to manage an application state running in another.
# Install
```
go get github.com/tendermint/abci
cd $GOPATH/src/github.com/tendermint/abci
glide install
go install ./cmd/...
```
For more information on ABCI, motivations, and tutorials, please visit [our blog post](https://tendermint.com/blog/abci-the-application-blockchain-interface),
and the more detailed [application developer's guide](https://tendermint.com/docs/guides/app-development).