Use case:
- Importing dask_image.imread in Python 3.11
Issue:
ImportError: cannot import name 'Iterable' from 'collections' arises from pims (cine.py)
Expected result:
Reason:
Iterable deprecated from collections in Pythnon 3.10 docs section
Solution:
In cine.py, change:
from collections import Iterable
to:
from collections.abc import Iterable
or
Install Python=<3.9