From 7891e0a87408184e32010d66ab5abd454d8b5a4f Mon Sep 17 00:00:00 2001 From: Rian Stockbower Date: Sun, 25 Jan 2026 07:04:22 -0500 Subject: [PATCH] docs: add direct .deb and .rpm install command examples Add explicit dpkg and rpm install commands to the Binary download section for users who prefer direct package installation over repository setup. Fixes #72 Co-Authored-By: Claude Opus 4.5 --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f3c3050..d8474ae 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,17 @@ sudo dnf install nrq **Binary download** -Download `.deb`, `.rpm`, or `.tar.gz` from the [Releases](https://github.com/open-cli-collective/newrelic-cli/releases) page. +Download `.deb`, `.rpm`, or `.tar.gz` from the [Releases page](https://github.com/open-cli-collective/newrelic-cli/releases) - available for x64 and ARM64. + +```bash +# Direct .deb install +curl -LO https://github.com/open-cli-collective/newrelic-cli/releases/latest/download/nrq_VERSION_linux_amd64.deb +sudo dpkg -i nrq_VERSION_linux_amd64.deb + +# Direct .rpm install +curl -LO https://github.com/open-cli-collective/newrelic-cli/releases/latest/download/nrq-VERSION.x86_64.rpm +sudo rpm -i nrq-VERSION.x86_64.rpm +``` ---