引用python scipy.stats模块时报错:ImportError: DLL load failed while importing _qhull: 找不到指定的模块。
时间: 2023-12-11 15:32:20 浏览: 225
ImportError: DLL load failed: 找不到指定的模块。
5星 · 资源好评率100%
当引用python scipy.stats模块时报错:ImportError: DLL load failed while importing _qhull: 找不到指定的模块,这通常是由于缺少qhull库导致的。您可以尝试以下两种方法来解决这个问题:
1.安装qhull库
您可以通过以下命令在Windows上安装qhull库:
```shell
pip install --global-option=build_ext --global-option="-IC:\qhull-2019.1\include" --global-option="-LC:\qhull-2019.1\lib" qhull
```
其中,C:\qhull-2019.1\include和C:\qhull-2019.1\lib是qhull库的安装路径。您需要根据实际情况进行更改。
2.升级scipy库
如果您的scipy库版本过低,也可能会导致这个问题。您可以尝试通过以下命令升级scipy库:
```shell
pip install --upgrade scipy
```
阅读全文