You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just ran in to this error in an environment without dask.
TypeError: Could not find a Chunk Manager which recognises type <class 'dask.array.core.Array'>
I think we could easily recommend the user to install a package that provides dask by looking at type(array).__name__. This would make the message a lot friendlier
The text was updated successfully, but these errors were encountered:
Actually wait it's possible this might be a real bug - if xarray.core.pycompat.is_duck_dask_array returns False for an instance of dask.array.core.Array. We shouldn't see that type though, so if you can't reproduce it easily it's probably a bad install instead though.
What happened?
I just ran in to this error in an environment without dask.
I think we could easily recommend the user to install a package that provides
dask
by looking attype(array).__name__
. This would make the message a lot friendlierThe text was updated successfully, but these errors were encountered: