其他分享
首页 > 其他分享> > from scipy import special, optimize, from ._nnls import nnls ImportError: DLL load failed: 找不到指定的模块。

from scipy import special, optimize, from ._nnls import nnls ImportError: DLL load failed: 找不到指定的模块。

作者:互联网

报错信息

Python调用skimage库时报以下错,检查发现skicit-image库是安装的。
在这里插入图片描述

解决方案

1、打开Anaconda命令行,分别输入下面四条命令并回车。

conda remove --force numpy
conda remove --force scipy
pip install -U numpy
pip install -U scipy

下面是我的执行过程:
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
2、再次回到Pycharm,等待环境检索更新后,运行程序,成功运行!

标签:load,force,scipy,install,nnls,pip,import,numpy
来源: https://blog.csdn.net/qq_42257666/article/details/122081672