Pandas模块

一、环境配置

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

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

ImportError: Missingrequired dependencies ['numpy']

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

Many binaries depend on numpy-1.11+mkl and the Microsoft Visual C++ 2008 (x64x86, and SP1 for CPython 2.7), Visual C++ 2010 (x64x86, for CPython 3.4), or the Visual C++ 2015 (x64 and x86 for CPython 3.5 and 3.6) redistributable packages.

Install numpy+mkl before other packages that depend on it.

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

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

原文地址:https://www.cnblogs.com/mitsui/p/7404312.html