Anyone knows why I'm having this error ```ImportEr...
# questions
e
Anyone knows why I'm having this error
Copy code
ImportError: cannot import name 'SQLQueryDataset' from 'kedro_datasets.pandas'
I import the module using this
from kedro_datasets.pandas import SQLQueryDataset
n
Maybe you are using an older version of
kedro_datasets
which haven’t renamed from
DataSet
to
Dataset
try upgrade the version,
pip install -U kedro-datasets
👍 1
e
It worked. Thanks
K 1