[Windows] pip is configured with locations that require TLS/SSL에러 해결 방법

2022. 2. 11. 20:20개발로그/기타

반응형

윈도우에서 PIP로 Python 패키지를 설치 하다가 발생하는 SSL 에러를 해결하는 방법을 설명 한다.

 

윈도우에서 출력하는 에러는 아래와 같다.

WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/pyside2/

 

해당 문제는 OpenSSL이 없거나, PIP 가 OpenSSL의 경로를 찾지 못해 발생한 것으로 보이며,

Anaconda에 있는 OpenSSL Path를 설정 하니 문제 없이 동작 하였다.

 

C:\anaconda3
C:\anaconda3 C:\anaconda3\Library\mingw-w64\bin
C:\anaconda3\Library\bin
C:\anaconda3\Scripts

 

반응형