Can someone help me out with installing the dbt ut...
# troubleshooting
h
Can someone help me out with installing the dbt utils dependency in meltano?
m
I just did this yesterday, for dbt-redshift. The steps I followed, which worked: • create a
packages.yml
file in the
transform/
directory with this content:
Copy code
packages:
  - package: dbt-labs/dbt_utils
    version: 1.0.0
• run `meltano invoke dbt-postgres deps`to install it
you should see it in the
transform/dbt_packages/
directory after it’s installed
h
Worked right away! Thank you so much!