Incubator-mxnet: ModuleNotFoundError: No module named 'skimage'

Created on 12 Jan 2018  路  1Comment  路  Source: apache/incubator-mxnet

Tried running a python program that imports the following:
import os
import sys
import tensorflow as tf
import skimage.io as io
import numpy as np

and the error "No module named 'skimage'" shows.

I am using Python 3.6.4

Error Message:

File "C:/Python36/imgSegmentation2.py", line 8, in
import skimage.io as io
ModuleNotFoundError: No module named 'skimage'

What have you tried to solve it?

  1. I have tried pip install scikit-image and got the following error:

 photo error.jpg

  1. Already pip installed numpy

>All comments

I feel that it's not related to MXNet as the code has import skimage.io as io. You need to install skimage (http://scikit-image.org/docs/dev/install.html)

Was this page helpful?
0 / 5 - 0 ratings