1. Install dbt Core

To install dbt Core, follow the instructions provided in the official documentation.

Install with pip

  1. Create a new virtual environment:

    python -m venv dbt-env # create the environment
    

Untitled

Untitled

Untitled

2. Create a Project

Once dbt Core is installed, you can create a new project.

  1. Verify dbt installation:

    dbt --version
    

Untitled