博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Pandas模块
阅读量:5256 次
发布时间:2019-06-14

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

一、环境配置

pip3 安装 Pandas模块后,导入模块时提示

  "Missing required dependencies{0}".format(missing_dependencies))

ImportError: Missingrequired dependencies ['numpy']

已确认安装了numpy,使用numpy模块也出错,最后发现还需要安装mkl才可以使用。

Many binaries depend on  and the Microsoft Visual C++ 2008 (, , and  for CPython 2.7), Visual C++ 2010 (, , for CPython 3.4), or the Visual C++ 2015 ( for CPython 3.5 and 3.6) redistributable packages.

Install  before other packages that depend on it.

先进入找到适合自己的版本,cp36,是python 3.6 ,后面是系统32位,不知道自己的版本,在cmd 键入 python 查看. 

下载好之后 pip3 install 文件路径 安装成功,便可正常使用pandas

 

转载于:https://www.cnblogs.com/mitsui/p/7404312.html

你可能感兴趣的文章
js循环读取table里面的数据
查看>>
清明祭祖
查看>>
学习笔记--树上差分
查看>>
[持续更新]一些结论与技巧
查看>>
英语口语考试资料Friendships
查看>>
C# delegate和C# event
查看>>
mybatis系列-09-订单商品数据模型
查看>>
Appium基础五:appium相关API
查看>>
java集合杂谈
查看>>
apace搭建站点
查看>>
css元素的margin,padding
查看>>
C#ListView控件的属性和实际操作
查看>>
java中Statement详细用法。
查看>>
UISearchDisplayController隐藏navigationBar需注意
查看>>
个人知识管理软件
查看>>
Oracle Partition 分区详细总结
查看>>
The ways to kill Oracle session
查看>>
Ruby多线程
查看>>
HDU-3018 Ant Trip(欧拉回路)
查看>>
Codeforces Round #215 (Div. 1) B. Sereja ans Anagrams 匹配
查看>>