From b288ae66e03346ae986ffdcdb4ddbdaae810de4d Mon Sep 17 00:00:00 2001 From: Adam Tworkiewicz Date: Thu, 20 Jun 2024 16:50:10 -0500 Subject: [PATCH] Update dbt.adoc --- modules/ROOT/pages/dbt.adoc | 23 ++++++++--------------- 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/modules/ROOT/pages/dbt.adoc b/modules/ROOT/pages/dbt.adoc index 61f7dd96c..51626bb65 100644 --- a/modules/ROOT/pages/dbt.adoc +++ b/modules/ROOT/pages/dbt.adoc @@ -60,25 +60,18 @@ source env/bin/activate -- ==== -3. Install `dbt-teradata` module: +3. Install `dbt-teradata` and `dbt-core` modules: + -[source, bash] ----- -pip install dbt-teradata ----- - - dbt-core module is included as a dependency only up to version 1.7.x of dbt-teradata, so you don't have to install it separately. - - Starting from dbt-teradata 1.8.0 and above, dbt-core will not be installed as a dependency. Therefore, you need to explicitly install dbt-core. - Ensure you install dbt-core 1.8.0 or above. - You can do this with the following command: - - pip install dbt-core>=1.8.0 - [NOTE] +.dbt dependencies ==== -More information on decoupling dbt adapters from dbt core versions can be found here: https://github.com/dbt-labs/dbt-core/discussions/9171 +`dbt-core` module was included as a dependency only up to version 1.7.x of dbt-teradata. Starting from `dbt-teradata` 1.8.0 and above, `dbt-core` will not be installed as a dependency. Therefore, you need to explicitly install `dbt-core` in addition to installing `dbt-teradata`. More information on decoupling dbt adapters from `dbt-core` can be found here: https://github.com/dbt-labs/dbt-core/discussions/9171 ==== - - ++ +[source, bash] +---- +pip install dbt-teradata dbt-core +---- == Configure dbt