how do I force meltano to run with a specific vers...
# getting-started
r
how do I force meltano to run with a specific version of dbt? dbt --version shows 1.7.16 and meltano invoke dbt-postgres debug shows
Copy code
Running with dbt=1.8.4
Registered adapter: postgres=1.8.2
How do I change to run with 1.7.16?
e
You seem to have an external installation of dbt independent of Meltano? You can tell Meltano which version of dbt to use updating the
pip_url
.
In particular, setting
dbt-core==1.7.16
and
dbt-postgres==1.7.17
, for example.
👍 1