mirror of https://github.com/etcd-io/bbolt.git
Update guide/command to get or install bbolt
Signed-off-by: Benjamin Wang <wachao@vmware.com>pull/368/head
parent
cc44e8614e
commit
c2edb1308f
17
README.md
17
README.md
|
@ -78,14 +78,23 @@ New minor versions may add additional features to the API.
|
||||||
### Installing
|
### Installing
|
||||||
|
|
||||||
To start using Bolt, install Go and run `go get`:
|
To start using Bolt, install Go and run `go get`:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
$ go get go.etcd.io/bbolt/...
|
$ go get go.etcd.io/bbolt@latest
|
||||||
```
|
```
|
||||||
|
|
||||||
This will retrieve the library and install the `bolt` command line utility into
|
This will retrieve the library and update your `go.mod` and `go.sum` files.
|
||||||
your `$GOBIN` path.
|
|
||||||
|
|
||||||
|
To run the command line utility, execute:
|
||||||
|
```sh
|
||||||
|
$ go run go.etcd.io/bbolt/cmd/bbolt@latest
|
||||||
|
```
|
||||||
|
|
||||||
|
Run `go install` to install the `bbolt` command line utility into
|
||||||
|
your `$GOBIN` path, which defaults to `$GOPATH/bin` or `$HOME/go/bin` if the
|
||||||
|
`GOPATH` environment variable is not set.
|
||||||
|
```sh
|
||||||
|
$ go install go.etcd.io/bbolt/cmd/bbolt@latest
|
||||||
|
```
|
||||||
|
|
||||||
### Importing bbolt
|
### Importing bbolt
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue