0%

Pandas安装

安装 pandas 需要基础环境是 Python,开始前我们假定你已经安装了 Python 和 Pip。

使用 pip3 安装 pandas:

1
pip3 install pandas

安装成功后,查看pandas版本

1
2
3
4
5
6
$ python3
Python 3.10.6 (main, Aug 25 2022, 06:23:14) [Clang 10.0.1 (clang-1001.0.46.4)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import pandas
>>> pandas.__version__
'1.5.1'