Computer >> Máy Tính >  >> Lập trình >> Python

Tìm phiên bản của Gấu trúc và các phụ thuộc của nó bằng Python

Pandas là gói quan trọng để phân tích dữ liệu bằng Python. Có các phiên bản khác nhau dành cho Gấu trúc. Do một số phiên bản không khớp, nó có thể tạo ra một số vấn đề. Vì vậy, chúng ta cần tìm số phiên bản của Gấu trúc. Chúng ta có thể thấy chúng dễ dàng bằng cách sử dụng mã sau.

Chúng ta có thể sử dụng lệnh như bên dưới để lấy phiên bản -

pandas.__version__

Ví dụ

>>> import pandas as pd
>>> print(pd.__version__)
0.25.2
>>>

Chúng tôi cũng có thể lấy phiên bản của các phụ thuộc bằng cách sử dụng hàm như bên dưới -

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
>>>