일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- Excel
- numpy
- array
- c#
- SQL
- django
- list
- Java
- Apache
- Mac
- PANDAS
- GIT
- gas
- Kotlin
- hive
- dataframe
- PySpark
- matplotlib
- string
- google apps script
- Redshift
- math
- Github
- Google Spreadsheet
- PostgreSQL
- Tkinter
- Python
- Google Excel
- 파이썬
- Today
- Total
목록PIP (5)
달나라 노트
Python을 사용하다보면 여러 패키지들을 설치하는건 거의 필수적입니다. 패키지를 설치할 땐 pip install command를 이용하거나 아니면 Pycharm의 Interpreter 메뉴에서 설치를 하게 되는데, 이때 간혹 이상한 이유로 설치가 안되는 경우가 있습니다. 제가 경험했던 한 경우는 tableauserverclient를 설치하려는데 자꾸 아래와 같은 에러가 뜨더라구요. Could not fetch URL https://pypi.org/simple/tableauserverclient/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exce..
아래 명령어를 이용하면 설치된 Python library를 삭제할 수 있습니다. pip uninstall module_name 만약 anaconda interpreter를 사용하고 있고 conda에 설치된 module을 삭제하고 싶다면 아래 명령어를 사용하면 됩니다. conda remove module_name pip uninstall pandas conda remove numpy 예를 들면 위와 같습니다.
아래처럼 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
아래처럼 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..