python 2.7 - Extremely slow import of module skimage.io -
python 2.7 - Extremely slow import of module skimage.io -
just reinstalled numpy (built against mkl), scipy, cython, pil, scikit-learn , scikit-image in new virtualenv , getting extremely slow import time of module skimage.io:
import skimage --> 0.07536911964 secs skimage import io --> 3.15395903587 secs
what might reason?
have tried timing import of matplotlib
? that's 1 of plugins used skimage.io
.
the io
subpackage wrapper around these other libraries (and includes wrappers pil
, tifffile
, imread
, freeimage
, etc). @ import, bundle looks default backend (usually matplotlib
, pil
, on systems). 1 of these dependencies responsible slow import.
python-2.7 virtualenv scikit-learn scikit-image
Comments
Post a Comment