Pandas 是 Python 语言的一个扩展程序库,用于数据分析。主要数据结构是 Series (一维数据)与 DataFrame(二维数据)。
重点说明:安装pandas需要Requiresnumpy, dateutil, pytz, setuptools这些依赖包。
1、缺什么包就去 pip instal *** 什么包,一个都不能少!
2、如果上述包都不缺,可能还缺一个Cython!
准确说Cython是单独的一门语言,专门用来写在Python里面import用的扩展库。实际上Cython的语法基本上跟Python一致,而Cython有专门的“编译器”先将 Cython代码转变成C(自动加入了一大堆的C-Python API),然后使用C编译器编译出最终的Python可调用的模块。
pandas下载地址:
https://pypi.org/project/pandas/#files
pandas整体安装步骤:
1、依然插件安装:
pip install nose_parameterized
pip install numpy
pip install python_dateutil
pip install