博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
seaborn 安装成功 + ImportError: DLL load failed: 找不到指定的模块 问题解决
阅读量:6174 次
发布时间:2019-06-21

本文共 646 字,大约阅读时间需要 2 分钟。

这是我最近踩过的坑:

seaborn 安装成功

却依然有:
`>>> import seaborn
ImportError: 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

问题是因为你正在使用Windows

Scipy在Windows平台存在一些问题,如果你查看sklearn的网站,他们会告诉你如果你没有成功安装,可以使用pip或者conda安装非官方的Windows二进制文件包

参考自:

自然而然地从最常用的第三方库网站下载:

下载了numpy, scipyseaborn

卸掉了原来的numpy, scipyseaborn

再次安装依然失败
报了一样的错:

然后痛定思痛, 再次卸掉他们仨

然后:

pip install numpy scipy seaborn

就OK了, 可以导入。。。。。。

网上给的原因是:我们下到了一些非正式版本
。。。。。。

参考自:

转载地址:http://nxqba.baihongyu.com/

你可能感兴趣的文章
人人都应当控制的一些电脑操作技能
查看>>
百度echarts自定义主题使用
查看>>
ASP.NET MVC3中给DropDownList添加默认选项
查看>>
洛谷 1373 小a和uim之大逃离
查看>>
一不小心把win10的秘钥卸载了解决方法
查看>>
Linux实现删除撤回的方法。
查看>>
SilverLight之向后台请求数据-WebClient
查看>>
HDU Problem 1260 Tickets 【dp】
查看>>
STL map容器常用API
查看>>
队列的顺序存储---顺序队列
查看>>
Delphi 读取 c# webservice XML的base64编码图片字符串转化图片并显示
查看>>
第三天
查看>>
connector for python
查看>>
等价类划分的应用
查看>>
Web Service(下)
查看>>
trigger()
查看>>
nvm 怎么安装 ?
查看>>
Java VM里的magic
查看>>
[Node.js]Domain模块
查看>>
Linux操作系统文档
查看>>