找到 Pandas 和其依赖项在 Python 中的版本
Pandas 是用于 Python 中的数据分析的重要软件包。Pandas 有不同的版本可用。由于某些版本不匹配,它可能会产生一些问题。因此我们需要找到 Pandas 的版本号。我们可以使用以下代码轻松查看它们。
我们可以使用类似下面的命令来获取版本−
pandas.__version__
示例
>>> import pandas as pd >>> print(pd.__version__) 0.25.2 >>>
我们还可以使用类似于以下的函数获取依赖项的版本−
pandas.show_versions()
>>> pd.show_versions() INSTALLED VERSIONS ------------------ commit : None python : 3.7.1.final.0 python-bits : 64 OS : Windows OS-release : 7 machine : AMD64 processor : Intel64 Family 6 Model 60 Stepping 3, GenuineIntel byteorder : little LC_ALL : None LANG : None LOCALE : None.None pandas : 0.25.2 numpy : 1.15.3 pytz : 2018.7 dateutil : 2.7.4 pip : 19.2.2 setuptools : 39.0.1 Cython : None pytest : None hypothesis : None sphinx : None blosc : None feather : None xlsxwriter : None lxml.etree : 4.2.5 html5lib : None pymysql : None psycopg2 : None jinja2 : None IPython : None pandas_datareader: None bs4 : 4.6.3 bottleneck : None fastparquet : None gcsfs : None lxml.etree : 4.2.5 matplotlib : 3.0.1 numexpr : None odfpy : None openpyxl : None pandas_gbq : None pyarrow : None pytables : None s3fs : None scipy : None sqlalchemy : None tables : None xarray : None xlrd : None xlwt : None xlsxwriter : None >>>
广告