Merge pull request #995 from jonboulle/master

doc: update build instructions in README
release-2.0
Blake Mizerany 2014-09-04 23:25:48 -07:00
commit 769c043537
1 changed files with 4 additions and 6 deletions

View File

@ -33,17 +33,15 @@ The latest release and setup instructions are available at [GitHub][github-relea
### Building
You can build etcd from source:
You can build etcd using the standard go workflow - ensure `GOPATH` is set appropriately, and then:
```sh
git clone https://github.com/coreos/etcd
cd etcd
./build
go get github.com/coreos/etcd
```
This will generate a binary called `./bin/etcd`.
which will generate a binary at `$GOPATH/bin/etcd`
_NOTE_: you need go 1.2+. Please check your installation with
_NOTE_: etcd requires go 1.2+. Please check your installation with
```
go version