Closed thomasnilsson closed 5 years ago
@thomasnilsson You have a different version of skimage (which renamed montage2d to montage).
A temporary fix is to change the second line of pipe_utils.py
from
from skimage.util import montage as montage2d
to from skimage.util.montage import montage2d
and it should work.
If you are comfortable using pip
and upgrading packages then you can also run pip install scikit-image==0.14.2
and everything will work without making any changes
Did that work for you or is there still an issue?
pip install scikit-image==0.14.2
worked wonders, thank you for the help!
The following piece of code
Produces the following error