fal-ai / dbt-fal

do more with dbt. dbt-fal helps you run Python alongside dbt, so you can send Slack alerts, detect anomalies and build machine learning models.
https://fal.ai/dbt-fal
Apache License 2.0
853 stars 72 forks source link

unable to install dbt-fal[bigquery] #811

Closed marcNY closed 1 year ago

marcNY commented 1 year ago

Describe the bug When running pip install dbt-fal[bigquery] i get zsh: no matches found: dbt-fal[bigquery]

How to reproduce On mac osx use pip install dbt-fal[bigquery]

Expected behavior installation of dbt-fal[bigquery]

Actual behavior I get the message: zsh: no matches found: dbt-fal[bigquery]

mederka commented 1 year ago

Thank you for raising this, @marcNY. Could you tell us which versions of Python and dbt-bigquery you are using?

chamini2 commented 1 year ago

@marcNY, you need to enclose the package in quotes. Brackets are picked up by zsh and treated differently.

Try

pip install 'dbt-fal[bigquery]'
burkaygur commented 1 year ago

Hi @marcNY! Where you able to run @chamini2's recommendation successfully?

Closing the ticket. Reopen if the problem is not solved.