윈도우 아나콘다 환경에서 pip ssl 에러 발생
윈도우 아나콘다 환경 pip 에러
해결방법 : dll 파일 2개를 다른 곳으로 복사
현상
pip install 시에 ssl 에러 발생
해결방법
SSL Verify 해제
1 | conda config --set ssl_verify false |
시도 했지만 해결안됨
URL로 바로 설치
1 | pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host files.pythonhosted.org 설치할패키지명 |
이것도 시도 했지만 해결안됨
DLL 파일을 DLLs 폴더로 복사
Anaconda3\Library\bin 에 있는
libcrypto-1_1-x64.* libssl-1_1-x64.*
두개의 파일을
Anaconda3\DLLs 폴더로 복사
이걸로 해결됨