Do `utilities` have their own python venv like tap...
# troubleshooting
a
Do
utilities
have their own python venv like taps and targets? If I needed to add the
dagster-postgres
extension library to the dagster utility env, how would I do that in a way that would be replicated when deploying via docker? https://docs.dagster.io/deployment/dagster-instance#dagster-storage
m
You can specify multiple packages in a plugin’s
pip_url
. I would expect that you could add
dagster-postgres
to that field. We don’t use the dagster utility, but as an example, we have three packages listed in the
pip_url
for dbt-postgtres:
Copy code
plugins:
  utilities:
    - name: dbt-postgres
      variant: dbt-labs
      pip_url: dbt-core==1.5.0 dbt-postgres==1.5.0 git+<https://github.com/meltano/dbt-ext.git@626e188eefd03603826d3d0229b10a0838c6b54d>
v
Yes :)