一、環境配置
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 (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.
Install numpy+mkl before other packages that depend on it.
先進入numpy+mkl下載找到適合自己的版本,cp36,是python 3.6 ,后面是系統32位,不知道自己的版本,在cmd 鍵入 python 查看.

下載好之后 pip3 install 文件路徑 安裝成功,便可正常使用pandas
