lsh 发表于 2019-2-8 13:31:06

ubuntu下运行Python程序出现ImportError: No module named skimage

第一种可能是没有安装skimage或者部分依赖库没有安装:

python-skimage包依赖于matplotlib,scipy,pil,numpy和six。

首先安装依赖包:

sudo apt-get install python-matplotlib python-numpy python-pil python-scipy

sudo apt-get install build-essential cython

安装skimage包:

sudo apt-get install python-skimage

pip3 install scikit-image


第二种可能是skimage版本需更新:

pip install scikit-image --upgrade


页: [1]
查看完整版本: ubuntu下运行Python程序出现ImportError: No module named skimage