I write my project on windows using spyder and when i import scikit-image i get error.
I imported it like this:
from skimage import data,io,filters,color,segmentation, img_as_float
Here is the installed python and its modules information:
PS C:\Windows\system32> python --version
Python 3.9.10
PS C:\Windows\system32> pip list
Package       Version
------------- ---------
imageio       2.18.0
joblib        1.1.0
networkx      2.8
numpy         1.22.3
packaging     21.3
Pillow        9.1.0
pip           22.0.4
pyparsing     3.0.8
PyWavelets    1.3.0
scikit-image  0.19.2
scikit-learn  1.0.2
scipy         1.8.0
setuptools    58.1.0
threadpoolctl 3.1.0
tifffile      2022.4.28
Here is the error massage:
line 8, in <module>
from skimage import data,io,filters,color,segmentation, img_as_float
ModuleNotFoundError: No module named 'skimage'