Pandas는 Python에서 데이터 분석을 위한 중요한 패키지입니다. 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 >>>