From f71535dda62cf24042542841f09d65f96800571a Mon Sep 17 00:00:00 2001 From: Mirna Wong <89008547+mirnawong1@users.noreply.github.com> Date: Wed, 1 May 2024 17:17:16 +0100 Subject: [PATCH 1/5] Update cloud-cli-installation.md add callout to clarify dbt core uninstall per feedback from Greg. --- .../docs/docs/cloud/cloud-cli-installation.md | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/website/docs/docs/cloud/cloud-cli-installation.md b/website/docs/docs/cloud/cloud-cli-installation.md index 81e955d4b89..52fd91c5789 100644 --- a/website/docs/docs/cloud/cloud-cli-installation.md +++ b/website/docs/docs/cloud/cloud-cli-installation.md @@ -40,16 +40,23 @@ You can install the dbt Cloud CLI on the command line by using one of these meth Before you begin, make sure you have [Homebrew installed](http://brew.sh/) in your code editor or command line terminal. Refer to the [FAQs](#faqs) if your operating system runs into path conflicts. -1. Verify that you don't already have dbt Core installed: - +1. Verify that you don't already have dbt Core installed by running the following command. + ```bash which dbt ``` - - If you see a `dbt not found`, you're good to go. If the dbt help text appears, use `pip uninstall dbt` to remove dbt Core from your system.
- -2. Install the dbt Cloud CLI with Homebrew: + If the output is `dbt not found`, then that confirms you don't have it installed. + +:::Run `pip uninstall dbt` to uninstall dbt Core +If you have installed dbt Core globally in some other way, you'll need to uninstall it first before proceeding. To uninstall dbt Core and remove it from the system, run: +```bash +`pip uninstall dbt` +``` +::: + +2. Install the dbt Cloud CLI with Homebrew: - - First, remove the dbt-labs tap, the separate repository for packages, from Homebrew. This prevents Homebrew from installing packages from that repository: + - First, remove the `dbt-labs` tap, the separate repository for packages, from Homebrew. This prevents Homebrew from installing packages from that repository: ```bash brew untap dbt-labs/dbt - Then, add and install the dbt Cloud CLI as a package: From 58a39df92d37ba0d1a4afdcfc079a8150c8912bc Mon Sep 17 00:00:00 2001 From: Mirna Wong <89008547+mirnawong1@users.noreply.github.com> Date: Wed, 1 May 2024 17:26:16 +0100 Subject: [PATCH 2/5] Update cloud-cli-installation.md --- website/docs/docs/cloud/cloud-cli-installation.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/website/docs/docs/cloud/cloud-cli-installation.md b/website/docs/docs/cloud/cloud-cli-installation.md index 52fd91c5789..820610f55c5 100644 --- a/website/docs/docs/cloud/cloud-cli-installation.md +++ b/website/docs/docs/cloud/cloud-cli-installation.md @@ -47,11 +47,13 @@ Before you begin, make sure you have [Homebrew installed](http://brew.sh/) in yo ``` If the output is `dbt not found`, then that confirms you don't have it installed. -:::Run `pip uninstall dbt` to uninstall dbt Core +:::tip Run `pip uninstall dbt` to uninstall dbt Core + If you have installed dbt Core globally in some other way, you'll need to uninstall it first before proceeding. To uninstall dbt Core and remove it from the system, run: ```bash `pip uninstall dbt` ``` + ::: 2. Install the dbt Cloud CLI with Homebrew: From 8a89dc9b90c86180b85759db9cecb1f909e7f568 Mon Sep 17 00:00:00 2001 From: Mirna Wong <89008547+mirnawong1@users.noreply.github.com> Date: Wed, 1 May 2024 17:39:06 +0100 Subject: [PATCH 3/5] Update website/docs/docs/cloud/cloud-cli-installation.md --- website/docs/docs/cloud/cloud-cli-installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/cloud/cloud-cli-installation.md b/website/docs/docs/cloud/cloud-cli-installation.md index 820610f55c5..e5c5aee2a3a 100644 --- a/website/docs/docs/cloud/cloud-cli-installation.md +++ b/website/docs/docs/cloud/cloud-cli-installation.md @@ -51,7 +51,7 @@ Before you begin, make sure you have [Homebrew installed](http://brew.sh/) in yo If you have installed dbt Core globally in some other way, you'll need to uninstall it first before proceeding. To uninstall dbt Core and remove it from the system, run: ```bash -`pip uninstall dbt` +pip uninstall dbt ``` ::: From 153a008d319c9116f5f7b1ac45d7d3e5f674ca88 Mon Sep 17 00:00:00 2001 From: Mirna Wong <89008547+mirnawong1@users.noreply.github.com> Date: Wed, 1 May 2024 17:41:13 +0100 Subject: [PATCH 4/5] Update website/docs/docs/cloud/cloud-cli-installation.md --- website/docs/docs/cloud/cloud-cli-installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/cloud/cloud-cli-installation.md b/website/docs/docs/cloud/cloud-cli-installation.md index e5c5aee2a3a..fad80d024c5 100644 --- a/website/docs/docs/cloud/cloud-cli-installation.md +++ b/website/docs/docs/cloud/cloud-cli-installation.md @@ -49,7 +49,7 @@ Before you begin, make sure you have [Homebrew installed](http://brew.sh/) in yo :::tip Run `pip uninstall dbt` to uninstall dbt Core -If you have installed dbt Core globally in some other way, you'll need to uninstall it first before proceeding. To uninstall dbt Core and remove it from the system, run: +If you've installed dbt Core globally in some other way, first uninstall it with: ```bash pip uninstall dbt ``` From 3fbf9e5b2aedd064537e1e67e6102cfcb5f87f51 Mon Sep 17 00:00:00 2001 From: Mirna Wong <89008547+mirnawong1@users.noreply.github.com> Date: Wed, 1 May 2024 17:52:56 +0100 Subject: [PATCH 5/5] Update website/docs/docs/cloud/cloud-cli-installation.md --- website/docs/docs/cloud/cloud-cli-installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/cloud/cloud-cli-installation.md b/website/docs/docs/cloud/cloud-cli-installation.md index fad80d024c5..e5635838560 100644 --- a/website/docs/docs/cloud/cloud-cli-installation.md +++ b/website/docs/docs/cloud/cloud-cli-installation.md @@ -49,7 +49,7 @@ Before you begin, make sure you have [Homebrew installed](http://brew.sh/) in yo :::tip Run `pip uninstall dbt` to uninstall dbt Core -If you've installed dbt Core globally in some other way, first uninstall it with: +If you've installed dbt Core globally in some other way, uninstall it first before proceeding: ```bash pip uninstall dbt ```