I have a working conda environment with Kedro installed. The .yml file is available by the link 1. My kedro pipelines work fine in this environment. However, when I try to install matplotlib package with conda I have the following warning:
The following packages are causing the inconsistency:
- conda-forge/noarch::pyspark==3.2.1=pyhd8ed1ab_0
Conda somehow resolves it I suppose because it suggests installing the required packages. When I try to run kedro in this updated environment I face the error:
kedro.io.core.DataSetError: Object
ParquetDataSet
cannot be loaded fromkedro.extras.datasets.pandas
.
It seems like the problem is that conda updates some packages which are no longer consistible with kedro. How can I install the matplolib pkg using conda without breaking kedro?