Error message: ImportError: No module named skimage.io

Error message: ImportError: No module named skimage.io
Solution:
Install directly using the terminal:
pip install -U scikit-image


If the prompt does not recognize the pip command, under Ubuntu 14.04 (64bit), use the following command to install the pip package management software. You can also use the Synaptic software package to search for "scikit-image" and install it.

wget https://bootstrap.pypa.io/get-pip.py  --no-check-certificate
sudo python get-pip.py

Guess you like

Origin blog.csdn.net/hdmjdp/article/details/65628685