Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,21 @@ from [GitHub Releases](https://github.com/davebarnwell/rollbar-cli/releases).

### Go install

Install Go first if `go` is not already available on your machine.

- macOS: `brew install go` or install the official package from [go.dev/dl](https://go.dev/dl/)
- Linux: use your distro package manager or install from [go.dev/dl](https://go.dev/dl/)
- Windows: install from [go.dev/dl](https://go.dev/dl/)

Verify the install:

```bash
go version
# example: go version go1.26.0 darwin/arm64
```

Then install `rollbar-cli`:

```bash
go install github.com/davebarnwell/rollbar-cli@latest
```
Expand Down
Loading