seaborn 安装成功 + ImportError: DLL load failed: 找不到指定的模块 问题解决

2次阅读

共计 697 个字符,预计需要花费 2 分钟才能阅读完成。

这是我最近踩过的坑:
seaborn 安装成功却依然有:`>>> import seabornImportError: DLL load failed: 找不到指定的模块
解决方式:
The problem is because you are using windows. Scipy has problems with windows, if you check the sklearn site they say if you were unsuccessful for installing their packages by pip or conda you can install them with unofficial windows binary packages 问题是因为你正在使用 WindowsScipy 在 Windows 平台存在一些问题,如果你查看 sklearn 的网站,他们会告诉你如果你没有成功安装,可以使用 pip 或者 conda 安装非官方的 Windows 二进制文件包
参考自:https://stackoverflow.com/que…

自然而然地从最常用的第三方库网站下载:https://www.lfd.uci.edu/~gohl… 下载了 numpy, scipy 和 seaborn 库
卸掉了原来的 numpy, scipy 和 seaborn 再次安装依然失败报了一样的错:
然后痛定思痛, 再次卸掉他们仨然后:
pip install numpy scipy seaborn
就 OK 了, 可以导入。。。。。。网上给的原因是: 我们下到了一些非正式版本。。。。。。
参考自:https://blog.csdn.net/monoton…https://github.com/mwaskom/se…

正文完
 0