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库是安装的。

image.png


解决方案

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


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

下面是我的执行过程:

image.png


2、再次回到Pycharm,等待环境检索更新后,运行程序,成功运行!

目录
相关文章
|
9天前
|
Java Serverless Python
探索Python中的并发编程与`concurrent.futures`模块
探索Python中的并发编程与`concurrent.futures`模块
14 4
|
21天前
|
API Python
python ratelimit模块
python ratelimit模块
|
21天前
|
Python
像导入Python模块一样导入ipynb文件
像导入Python模块一样导入ipynb文件
|
20天前
|
机器学习/深度学习 存储 算法
NumPy 与 SciPy:Python 科学计算库的比较
【8月更文挑战第30天】
52 1
|
21天前
|
算法 TensorFlow 算法框架/工具
写Python时不用import,你会遭遇什么
写Python时不用import,你会遭遇什么
|
21天前
|
算法 Python
python tarfile模块
python tarfile模块
|
21天前
|
Python
如何在 Python 中导入模块
【8月更文挑战第29天】
20 1
|
21天前
|
Python
|
21天前
|
数据采集 JSON 算法框架/工具
我常用的几个经典Python模块
我常用的几个经典Python模块
|
21天前
|
开发者 Python
什么是 python 模块?
【8月更文挑战第29天】
11 0