From f75d980db2e2e25353c3051ad29d252744173a24 Mon Sep 17 00:00:00 2001
From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com>
Date: Wed, 11 Feb 2026 13:01:01 +0000
Subject: [PATCH 1/4] Update references/lightdash-cli.mdx
Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com>
---
references/lightdash-cli.mdx | 20 +++++++++++++++-----
1 file changed, 15 insertions(+), 5 deletions(-)
diff --git a/references/lightdash-cli.mdx b/references/lightdash-cli.mdx
index 7a3a91b0..40ea1436 100644
--- a/references/lightdash-cli.mdx
+++ b/references/lightdash-cli.mdx
@@ -41,12 +41,22 @@ Ignores the preceding command and shows the installed CLI version. Usually it's
lightdash --version
```
-If you need to upgrade your version of the Lightdash cli, run the following in your terminal:
+If you need to upgrade your version of the Lightdash CLI, run one of the following in your terminal depending on how you installed it:
-```bash
-npm install -g @lightdash/cli
-lightdash --version
-```
+
+
+ ```bash
+ npm install -g @lightdash/cli
+ lightdash --version
+ ```
+
+
+ ```bash
+ brew upgrade lightdash/tap/lightdash
+ lightdash --version
+ ```
+
+
### Help
From 944ba1a27a311f447e1123b8bb09e6a11fef6a89 Mon Sep 17 00:00:00 2001
From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com>
Date: Wed, 11 Feb 2026 13:02:55 +0000
Subject: [PATCH 2/4] Update guides/cli/how-to-install-the-lightdash-cli.mdx
Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com>
---
.../cli/how-to-install-the-lightdash-cli.mdx | 42 +++++++++++++------
1 file changed, 29 insertions(+), 13 deletions(-)
diff --git a/guides/cli/how-to-install-the-lightdash-cli.mdx b/guides/cli/how-to-install-the-lightdash-cli.mdx
index 966ff888..048f5155 100644
--- a/guides/cli/how-to-install-the-lightdash-cli.mdx
+++ b/guides/cli/how-to-install-the-lightdash-cli.mdx
@@ -86,25 +86,41 @@ You can also download the CLI binary directly from [GitHub releases](https://git
### Update to the latest version
-To update your Lightdash CLI to the latest version, run:
-
-```bash
-npm update -g @lightdash/cli
-```
+To update your Lightdash CLI to the latest version, run one of the following depending on how you installed it:
+
+
+
+ ```bash
+ brew upgrade lightdash/tap/lightdash
+ ```
+
+
+ ```bash
+ npm update -g @lightdash/cli
+ ```
+
+
### Update to a specific version
-To update (or downgrade) to a specific version of the Lightdash CLI, run:
+
+
+ Homebrew doesn't support installing specific versions directly. To install a specific version, use npm instead or download the binary from [GitHub releases](https://github.com/lightdash/lightdash/releases).
+
+
+ To update (or downgrade) to a specific version of the Lightdash CLI, run:
-```bash
-npm install -g @lightdash/cli@VERSION_NUMBER
-```
+ ```bash
+ npm install -g @lightdash/cli@VERSION_NUMBER
+ ```
-Replace `VERSION_NUMBER` with the desired version. For example:
+ Replace `VERSION_NUMBER` with the desired version. For example:
-```bash
-npm install -g @lightdash/cli@0.1743.1
-```
+ ```bash
+ npm install -g @lightdash/cli@0.1743.1
+ ```
+
+
You can check your current CLI version by running `lightdash --version`.
From 9c580e7823f27c99ed8496386f95598f3df141b9 Mon Sep 17 00:00:00 2001
From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com>
Date: Wed, 11 Feb 2026 13:03:57 +0000
Subject: [PATCH 3/4] Update references/lightdash-cli.mdx
Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com>
---
references/lightdash-cli.mdx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/references/lightdash-cli.mdx b/references/lightdash-cli.mdx
index 40ea1436..ebae015e 100644
--- a/references/lightdash-cli.mdx
+++ b/references/lightdash-cli.mdx
@@ -52,7 +52,7 @@ If you need to upgrade your version of the Lightdash CLI, run one of the followi
```bash
- brew upgrade lightdash/tap/lightdash
+ brew upgrade lightdash
lightdash --version
```
From 7ffe63e9d3f58517bd63d64fb3ba77604640930a Mon Sep 17 00:00:00 2001
From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com>
Date: Wed, 11 Feb 2026 13:05:53 +0000
Subject: [PATCH 4/4] Update guides/cli/how-to-install-the-lightdash-cli.mdx
Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com>
---
guides/cli/how-to-install-the-lightdash-cli.mdx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guides/cli/how-to-install-the-lightdash-cli.mdx b/guides/cli/how-to-install-the-lightdash-cli.mdx
index 048f5155..d9ba931d 100644
--- a/guides/cli/how-to-install-the-lightdash-cli.mdx
+++ b/guides/cli/how-to-install-the-lightdash-cli.mdx
@@ -91,7 +91,7 @@ To update your Lightdash CLI to the latest version, run one of the following dep
```bash
- brew upgrade lightdash/tap/lightdash
+ brew upgrade lightdash
```