반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- GIT
- Tkinter
- numpy
- google apps script
- PySpark
- Java
- math
- array
- SQL
- c#
- Apache
- list
- Excel
- PostgreSQL
- dataframe
- Google Excel
- Python
- Redshift
- Google Spreadsheet
- hive
- django
- 파이썬
- matplotlib
- Github
- Mac
- string
- Kotlin
- PANDAS
- gas
Archives
- Today
- Total
달나라 노트
Python Basic : pip show (Python 모듈 상세 정보. Python 모듈 정보. Python 라이브러리 상세 정보. Python 라이브러리 정보. Python 모듈 버전. Python 라이브러리 버전.) 본문
Python/Python Basic
Python Basic : pip show (Python 모듈 상세 정보. Python 모듈 정보. Python 라이브러리 상세 정보. Python 라이브러리 정보. Python 모듈 버전. Python 라이브러리 버전.)
CosmosProject 2022. 2. 10. 20:26728x90
반응형
아래처럼 pip show 명령어를 이용하면 어떤 Python library의 상세한 정보를 볼 수 있습니다.
pip show module_name
pip show pandas
예를들어 현재 제 컴퓨터에 설치된 pandas의 상세정보를 보려고 할 때 위처럼 pip show pandas를 terminal에 적으면
아래와 같이 pandas에 관한 상세 정보가 나옵니다.
Name: pandas
Version: 1.0.5
Summary: Powerful data structures for data analysis, time series, and statistics
Home-page: https://pandas.pydata.org
Author: None
Author-email: None
License: BSD
Location: /Users/userid/opt/anaconda3/lib/python3.8/site-packages
Requires: pytz, numpy, python-dateutil
Required-by: statsmodels, seaborn
그 중 일부 주요한 내용을 보자면 다음과 같습니다.
Version: 1.0.5 -> 현재 컴퓨터에 설치된 pandas의 버전
Location: /Users/robin/opt/anaconda3/lib/python3.8/site-packages -> pandas가 설치된 경로
Requires: pytz, numpy, python-dateutil -> pandas 설치에 필요한 필요 library들
728x90
반응형
'Python > Python Basic' 카테고리의 다른 글
Python Basic : pip uninstall (Python 모듈 삭제. Python 라이브러리 삭제.) (0) | 2022.02.10 |
---|---|
Python Basic : pip install (라이브러리 설치하기. 라이브러리 업그레이드. 특정 버전의 라이브러리 설치. Python 특정 버전 모듈 설치. Python 라이브러리 다운그레이드.) (0) | 2022.02.10 |
Python Basic : print (문자 출력하기, python 문자 출력) (0) | 2022.01.27 |
Python Basic : rjust, ljust (python lpad, python rpad, python 문자 추가하기) (0) | 2022.01.26 |
Python Basic : any, all (0) | 2022.01.20 |
Comments