python -m venv venv
source venv/activate.bin
For installation of DBT you can install the necessary dependencies or plain dbt using
pip install dbt-core
To Install DBT with Postres Dependencies
pip install dbt-postgres
dbt init <project_name>
- Create a packages.yml file in the project directory
- Add package details to the file e.g:
packages: - package: dbt-labs/dbt_utils version: 0.7.1 - Run the following command to initiate download
dbt deps