IT

설치된 판다 버전을 찾는 방법

itgroup 2022. 10. 29. 14:19
반응형

설치된 판다 버전을 찾는 방법

나는 판다의 기능 중 몇 가지에 어려움을 겪고 있다.설치 버전을 확인하려면 어떻게 해야 합니까?

확인.pandas.__version__:

In [76]: import pandas as pd

In [77]: pd.__version__
Out[77]: '0.12.0-933-g281dc4e'

판다들은 또한 유틸리티 기능을 제공합니다.pd.show_versions()는 의존관계 버전도 보고합니다.

In [53]: pd.show_versions(as_json=False)

INSTALLED VERSIONS
------------------
commit: None
python: 2.7.6.final.0
python-bits: 64
OS: Linux
OS-release: 3.13.0-45-generic
machine: x86_64
processor: x86_64
byteorder: little
LC_ALL: None
LANG: en_US.UTF-8

pandas: 0.15.2-113-g5531341
nose: 1.3.1
Cython: 0.21.1
numpy: 1.8.2
scipy: 0.14.0.dev-371b4ff
statsmodels: 0.6.0.dev-a738b4f
IPython: 2.0.0-dev
sphinx: 1.2.2
patsy: 0.3.0
dateutil: 1.5
pytz: 2012c
bottleneck: None
tables: 3.1.1
numexpr: 2.2.2
matplotlib: 1.4.2
openpyxl: None
xlrd: 0.9.3
xlwt: 0.7.5
xlsxwriter: None
lxml: 3.3.3
bs4: 4.3.2
html5lib: 0.999
httplib2: 0.8
apiclient: None
rpy2: 2.5.5
sqlalchemy: 0.9.8
pymysql: None
psycopg2: 2.4.5 (dt dec mx pq3 ext)

실행:

pip list

패키지(판다 포함)와 버전 목록이 표시됩니다. 예:

beautifulsoup4 (4.5.1)
cycler (0.10.0)
jdcal (1.3)
matplotlib (1.5.3)
numpy (1.11.1)
openpyxl (2.2.0b1)
pandas (0.18.1)
pip (8.1.2)
pyparsing (2.1.9)
python-dateutil (2.2)
python-nmap (0.6.1)
pytz (2016.6.1)
requests (2.11.1)
setuptools (20.10.1)
six (1.10.0)
SQLAlchemy (1.0.15)
xlrd (1.0.0)

가장 심플한 솔루션

코드:

import pandas as pd
pd.__version__

** "버전"의 앞뒤에 이중 밑줄이 표시됩니다.

출력:

'0.14.1'

달려.

pip freeze

위와 같이 동작합니다.

pip show pandas

특정 패키지에 대한 정보를 표시합니다.자세한 것은, 을 참조해 주세요.pip help

창문들

python -c "import pandas as pd; print(pd.__version__)"
conda list | findstr pandas  # Anaconda / Conda
pip freeze | findstr pandas
pip show pandas | findstr Version

리눅스

python -c "import pandas as pd; print(pd.__version__)"
conda list | grep numpy  # Anaconda / Conda
pip freeze | grep numpy  # pip

주피터 노트북 셀:pip freeze | grep pandas 여기에 이미지 설명 입력

언급URL : https://stackoverflow.com/questions/20612645/how-to-find-the-installed-pandas-version

반응형