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
File "C:/Python36/imgSegmentation2.py", line 8, in
import skimage.io as io
ModuleNotFoundError: No module named 'skimage'
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)