-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incompatible netCDF4 version #60
Comments
For some reasons netCDF4 version 1.2.2 installed by conda does not work. But with the version 1.2.1 I am able to write nc files which xarray can read. (to use netCDF4 1.2.1 - python 3.5 or lower is required) |
I encountered similar thing when performing a performance test. What I observed was that with netcdf4 v1.2.4 from default channel (without specifying the channel name), there is no compatibility issue with the h5py when reading the file. However, when netcdf v1.2.4 from conda-forge channel, I observed the error.
From these, it seems that there are differences in dependency requirement for netcdf4 in conda-forge and in default channel. In particular, the version of |
There seems to be a problem with the compatibility of netCDF4 (version >= 1.2.3) and h5py.
So in cube.update() netCDF4 is used to write the images but xarray uses h5py to read the files.
H5py can not read files written by netCDF4 (version >= 1.2.3).
h5py/h5py#719
The text was updated successfully, but these errors were encountered: