Trying to install dbt artifacts

I am getting an error when trying to install dbt artifacts. I have tried to run a model after following these steps GitHub - brooklyn-data/dbt_artifacts: A dbt package for modelling dbt metadata. https://brooklyn-data.github.io/dbt_artifacts and ran into an error (Unable to do partial parsing because config vars, config profile, or config target have changed). To try and investigate this i wanted to run a test or two. GitHub - brooklyn-data/dbt_artifacts: A dbt package for modelling dbt metadata. https://brooklyn-data.github.io/dbt_artifacts I tried running pip install pipx
and got this error:
dbt: error: invalid choice: ‘pip’ (choose from ‘docs’, ‘source’, ‘init’, ‘clean’, ‘debug’, ‘deps’, ‘list’, ‘ls’, ‘build’, ‘snapshot’, ‘run’, ‘compile’, ‘parse’, ‘test’, ‘seed’, ‘run-operation’). How should I fix this?

Hello @emilyrmiles ,

Hope you have completed first two instructions: These two steps is way to install dbt packages

  1. Add this package to your packages.yml:
packages:
  - package: brooklyn-data/dbt_artifacts
    version: 2.2.1
  1. Run dbt deps to install the package

Regards
Minhaj

1 Like