spf13--cobra/site/content/installing.md

18 lines
347 B
Markdown
Raw Normal View History

2020-10-04 23:00:12 +00:00
---
weight: 3
---
# Installing
Using Cobra is easy. First, use `go get` to install the latest version
of the library. This command will install the `cobra` generator executable
along with the library and its dependencies:
go get -u github.com/spf13/cobra
Next, include Cobra in your application:
```go
import "github.com/spf13/cobra"
```