From 6e2a3ff3b3e2aa539a83afa9a06a1f455710ab01 Mon Sep 17 00:00:00 2001 From: Matthew Fine <17680862+chewrocca@users.noreply.github.com> Date: Wed, 16 Oct 2024 04:06:49 -0500 Subject: [PATCH] Add Homebrew installation instructions to documentation. (#486) * Add Homebrew installation instructions to documentation. Closes #228. * Update installation instructions: add headers --- docs/content/installation.md | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/docs/content/installation.md b/docs/content/installation.md index 59f9219e..9e577453 100644 --- a/docs/content/installation.md +++ b/docs/content/installation.md @@ -3,21 +3,38 @@ date: "2021-06-28T00:00:00+00:00" title: "Installation" --- -Grizzly is currently available for Linux and MacOS systems. +## Grizzly is currently available for Linux and MacOS systems + +### Installing Grizzly on Linux Download the [latest release](https://github.com/grafana/grizzly/releases). Select and download an appropriate file for your operating system. Then: -``` + +```bash sudo mv $DOWNLOADED_FILE /usr/local/bin/grr sudo chmod +x /usr/local/bin/grr ``` + +### Installing Grizzly on macOS via Homebrew + +Before you begin +Install [Homebrew](https://brew.sh) on your computer. + +Once Homebrew is installed, you can install Grizzly using the following command: + +```bash +brew install grizzly +``` + +### Building from source + If you wish to build the latest (as yet unreleased) version, assuming you have a recent Golang installed: -``` +```bash git clone https://github.com/grafana/grizzly.git cd grizzly make dev sudo mv grr /usr/local/bin/grr -``` \ No newline at end of file +```