why can't I install dbt-snowflake using miniconda?

139 Views Asked by At

I am trying to install dbt-snowflake 1.5.0 in my miniconda environment but it does not find the package...

conda install dbt-snowflake==1.5.0

but I get PackagesNotFoundError

Yet, if I try with pip, it finds and installs it

pip install dbt-snowflake==1.5.0

But in this case, it looks like dbt is not installed within my environment

Any idea how I could install this package within my conda environment?

1

There are 1 best solutions below

0
On BEST ANSWER

Thanks NickW

My package was in the "condo-forge" repository and I managed to install it using

conda install -c conda-forge dbt-snowflake==1.5.0