Jonghyun Yun
06/07/2024, 2:11 PM%load_node
, and this seems very handy for debugging and development. So, I did upgrade Kedro, but %load_ext kedro.ipython
gives me DatasetError
as follows. Does anyone advise me how to fix this?
DatasetError: Class 'pandas.CSVDataset' not found
DatasetError: Class 'pandas.ParquetDataset' not found
Nok Lam Chan
06/07/2024, 2:18 PMkedro.extras.datasets
has been removed from 0.18, you can find that in migration notes.
It has been moved to a separate package called kedro-datasets
. Can you do this to confirm?
pip install kedro-datasets
and re-run your notebookNok Lam Chan
06/07/2024, 2:19 PM%load_node
works well for you, would love to get some feedback!Jonghyun Yun
06/07/2024, 9:31 PM