1、环境配置python
pip3 安装 Pandas模块后,导入模块时提示redis
"Missing required dependencies{0}".format(missing_dependencies))ui
ImportError: Missingrequired dependencies ['numpy']orm
已确认安装了numpy,使用numpy模块也出错,最后发现还须要安装mkl才可使用。blog
Many binaries depend on numpy-1.11+mkl and the Microsoft Visual C++ 2008 (x64, x86, and SP1 for CPython 2.7), Visual C++ 2010 (x64, x86, for CPython 3.4), or the Visual C++ 2015 (x64 and x86 for CPython 3.5 and 3.6) redistributable packages.ip
Install numpy+mkl before other packages that depend on it.ci
先进入numpy+mkl下载找到适合本身的版本,cp36,是python 3.6 ,后面是系统32位,不知道本身的版本,在cmd 键入 python 查看. get
下载好以后 pip3 install 文件路径 安装成功,即可正常使用pandascmd