반응형
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 |
Tags
- c#
- google apps script
- matplotlib
- list
- gas
- GIT
- PANDAS
- Apache
- Excel
- django
- Tkinter
- numpy
- PostgreSQL
- Kotlin
- hive
- Github
- Redshift
- PySpark
- Google Spreadsheet
- 파이썬
- string
- Python
- math
- SQL
- array
- Java
- Google Excel
- Mac
- dataframe
Archives
- Today
- Total
목록pip version (1)
달나라 노트
Python Basic : pip install (라이브러리 설치하기. 라이브러리 업그레이드. 특정 버전의 라이브러리 설치. Python 특정 버전 모듈 설치. Python 라이브러리 다운그레이드.)
아래처럼 pip install 명령어는 어떤 모듈을 설치해줍니다. pip install module_name pip install module_name==1.0.5 만약 특정 버전의 라이브러리를 설치하고 싶다면 위처럼 모듈 이름 옆에 버전정보를 등호 2개와 함께 적어주면 됩니다. (기존에 이미 설치된 모듈이라면 기존에 설치된 모듈은 삭제한 후 명시한 버전으로 재설치합니다.) pip install pandas pip install pandas==1.2.0 예시를 들면 위와 같습니다. 만약 이미 설치된 모듈을 업그레이드하고싶으면 아래와같이 -U 옵션을 붙여주면 됩니다. pip install -U module_name
Python/Python Basic
2022. 2. 10. 20:32