diff --git a/docs/guide/install.md b/docs/guide/install.md index 2a04abe73b..ef0ef28a61 100644 --- a/docs/guide/install.md +++ b/docs/guide/install.md @@ -8,16 +8,17 @@ go get -u github.com/tendermint/basecoin/cmd/basecoin In some cases, if that fails, or if another branch is required, we use `glide` for dependency management. - -The correct way of compiling from source, assuming you've already -run `go get` or otherwise cloned the repo, is: +Thus, assuming you've already run `go get` or otherwise cloned the repo, +the correct way to install is: ``` cd $GOPATH/src/github.com/tendermint/basecoin -git checkout develop # (until we release v0.9) make get_vendor_deps make install ``` This will create the `basecoin` binary in `$GOPATH/bin`. +Note the `make get_vendor_deps` command will install `glide` and the correct version of all dependencies. + +If you need another branch, make sure to run `git checkout ` before the `make` commands.