rene_czepluch
08/09/2023, 6:39 AMimport pandas as pd
def model(dbt, session):
dbt.config(packages=["pandas"])
data= dbt.ref("train_test_split")
data['test_column'] = 1
return data
However, I get the error:
Python model failed:
No module named 'pandas'
I posted in the duckdb-dbt package, but I can understand it is a meltano issue? I need to know how to install Python packages into the virtual environment Meltano createsedgar_ramirez_mondragon
08/09/2023, 2:47 PMpip_url
of the dbt-duckdb plugin in your meltano.yml
.rene_czepluch
08/10/2023, 7:28 AMedgar_ramirez_mondragon
08/10/2023, 1:05 PM