Am getting the following error when running the simple command dbt --version upon performing the steps mentioned in the link - Install with HomeBrew
-bash: dbt: command not found
I am doing this on Macbook Pro running MacOS Monterey with Intel chip. Can someone tell me where I am going wrong?
system
2
You need to put your dbt binary path in your $PATH.
To find where dbt is installed, run this:
which dbt
And then add to your path:
export PATH=/path/to/dbt-binary:PATH
Note: @magnus.avitsland
originally posted this reply in Slack. It might not have transferred perfectly.