So I'm trying to run this script in Spyder (Python 3.9)
dset = xr.open_dataset(filename, decode_times=True, use_cftime=True)
print(dset)
But I keep on getting this error:
ValueError: found the following matches with the input file in xarray's IO backends: ['netcdf4', 'h5netcdf']. But their dependencies may not be installed, see:
https://docs.xarray.dev/en/stable/user-guide/io.html
https://docs.xarray.dev/en/stable/getting-started-guide/installing.html
I have already installed via conda the ['netcdf4', 'h5netcdf'].
Did anyone run on the same issue? I have tried this also:
conda install -c anaconda netcdf4 h5netcdf scipy pydap zarr fsspec cftime rasterio cfgrib pooch
but the same valueerror arises.