No module named "Skimage" ModuleNotFoundError

I have tried untinstalling "scikit-image" and installing again but keep getting the same thing?

from skimage.metrics import structural_similarity as ssim
ModuleNotFoundError: No module named 'skimage'

>Solution :

Try this:

python -m pip install -U scikit-image

Leave a Reply