진지한 개발자

pip 설치 시 SSLError 오류 해결방법 (SSLCertVerificationError) 본문

IT/Python

pip 설치 시 SSLError 오류 해결방법 (SSLCertVerificationError)

제이_엔 2023. 5. 22. 15:18
728x90
pip install <library>

# 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1045)'))'
  • 해결 방법
pip --trusted-host pypi.org --trusted-host files.pythonhosted.org install <라이브러리>
728x90

'IT > Python' 카테고리의 다른 글

unzip  (0) 2023.08.26
S3 file 지우기  (0) 2023.06.29
특정 이름의 S3 파일을 지우고 싶을 때  (0) 2023.06.09
Convert GroupBy Series to DataFrame  (0) 2023.06.05
Python 유용한 코드  (0) 2023.05.20