diff --git a/README.md b/README.md index 9e5bb74..7246d48 100644 --- a/README.md +++ b/README.md @@ -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 ```