Hi, I have been developing a project on Kedro 0.18...
# questions
j
Hi, I have been developing a project on Kedro 0.18.14. Kedro 0.19.3 has
%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?
Copy code
DatasetError: Class 'pandas.CSVDataset' not found
DatasetError: Class 'pandas.ParquetDataset' not found
K 1
n
@Jonghyun Yun, I believe this is dependencies issue.
kedro.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 notebook
👍 2
Do let me know if the
%load_node
works well for you, would love to get some feedback!
j
Sure thing, I will let you know how it works. It is a very nice feature, BTW.
❤️ 1