일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- math
- PostgreSQL
- Redshift
- list
- GIT
- array
- Java
- Tkinter
- Github
- 파이썬
- Mac
- Excel
- Apache
- c#
- Google Excel
- numpy
- Google Spreadsheet
- matplotlib
- PySpark
- Python
- google apps script
- django
- dataframe
- gas
- PANDAS
- string
- SQL
- Kotlin
- hive
- Today
- Total
목록library version (2)
달나라 노트
아래처럼 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 Lo..
Python에서 여러 라이브러리를 사용하다보면 어떤 library가 설치되어있고 각 library의 버전은 몇인지 알아볼 필요가 생길 때가 있습니다. 그럴때 사용할 수 있는 명령어는 아래 2가지가 있습니다. pip list -- Result Package Version ----------------- ------------------- Django 3.1.1 openpyxl 3.0.6 pandas 1.3.3 pip 20.2.2 psycopg2 2.8.5 requests 2.25.1 slack-sdk 3.10.1 slackclient 1.3.1 pip freeze -- Result Django @ file:///tmp/build/80754af9/django_1600355803933/work numpy @ ..