You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 3, 2023. It is now read-only.
requirements.txt states dbt as a requirement. As of v1.0.0, pip install dbt is no longer supported. dbt-core would have to be specified instead. Is there a specific version of dbt this should/can be run with? It could be helpful to specify versions in the requirements file.
There is an extra space while specifying the -r option in the pip install command. Should be pip install -r requirements.txt instead of pip install - r requirements.txt
dbt run is throwing an error due to a missing pandera requirement, which can be added to the requirements file. The run was successful after pip install pandera. Before the dbt-fal commit, sqlalchemy was also a missing requirement and had to be added.
Happy to do a PR to make these changes! This is also my first open source Github issue, any feedback is welcome!
The text was updated successfully, but these errors were encountered:
Great first issue! Thank you for your feedback -- appreciate you taking it for a spin.
All seem reasonable and we welcome a PR. TBH I'm not sure the requirements problem/why it's happening -- hit something similar then got distracted, debugging this was tricky. Will loop in the FAL folks to get to the bottom of this. For now your fix will suffice quite well. Looking forward to your PR.
Notes on the dbt Hamilton example found at hamilton/examples/dbt:
I ran this with
requirements.txt
statesdbt
as a requirement. As of v1.0.0,pip install dbt
is no longer supported.dbt-core
would have to be specified instead. Is there a specific version of dbt this should/can be run with? It could be helpful to specify versions in the requirements file.There is an extra space while specifying the
-r
option in the pip install command. Should bepip install -r requirements.txt
instead ofpip install - r requirements.txt
dbt run
is throwing an error due to a missingpandera
requirement, which can be added to the requirements file. The run was successful afterpip install pandera
. Before thedbt-fal
commit,sqlalchemy
was also a missing requirement and had to be added.Happy to do a PR to make these changes! This is also my first open source Github issue, any feedback is welcome!
The text was updated successfully, but these errors were encountered: