Pip Skimage
pip install scikit-image
alistair0111
pip install scikit-image
sudo pip3 install scikit-image
You can use pip install scikit-image.
Also see the recommended procedure.
from skimage import data, io, filters
image = data.coins()
# ... or any other NumPy array!
edges = filters.sobel(image)
io.imshow(edges)
io.show()
git clone https://github.com/scikit-image/scikit-image.git
cd scikit-image
pip install -e .