I keep getting No module named 'skimage.metrics'
only for "metrics" everything else works fine.
Is it deprecated? I have been unable to do anything and documentations doesn't mention anything.
Asked
Active
Viewed 2,863 times
3

ijzepeda
- 55
- 1
- 6
1 Answers
3
The current version of skimage is 0.17.0 and it has skimage.metrics. https://scikit-image.org/docs/dev/api/skimage.metrics.html
It is also in 0.16.0 https://scikit-image.org/docs/0.16.x/api/api.html
It is NOT in 0.15.0 https://scikit-image.org/docs/0.15.x/api/api.html
So 16 and later should have it. You can install the 0.16.1 version with:
pip install scikit-learn==0.16.1

Tommaso Di Noto
- 1,208
- 1
- 13
- 24

shanecandoit
- 581
- 1
- 3
- 11
-
This page list api changes and shows metrics appearing in 16. https://scikit-image.org/docs/stable/api_changes.html – shanecandoit Jan 27 '20 at 02:26
-
Thank you! I had the 0.15.0, I just updated! Thank you again! – ijzepeda Jan 27 '20 at 02:55