반응형
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 | 31 |
Tags
- Excel
- Redshift
- django
- PySpark
- numpy
- array
- SQL
- Mac
- PANDAS
- google apps script
- Github
- c#
- Java
- PostgreSQL
- string
- dataframe
- GIT
- Tkinter
- gas
- hive
- Apache
- 파이썬
- Kotlin
- Google Excel
- Python
- Google Spreadsheet
- list
- math
- matplotlib
Archives
- Today
- Total
목록pip install (2)
달나라 노트
Python Basic : pip install --trusted-host (trusted host에 URL 추가하기, 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 e..
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/Python Basic
2022. 5. 24. 18:53
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