프로그래밍
[파이썬 에러] [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1000)')) 에러 해결
0pen3r
2023. 11. 20. 10:01
pip install 기능을 쓰다보면, 아래와 같은 에러가 종종 발생한다.
[에러]
SSL 때문에 발생하는 오류로 여러 해결책이 있지만, 임시로 빠르게 설치하려면
python -m pip install --upgrade pip --trusted-host pypi.python.org --trusted-host files.pythonhosted.org --trusted-host pypi.org
이런 식으로 --trusted-host pypi.python.org --trusted-host files.pythonhosted.org --trusted-host pypi.org
옵션을 붙여주면 된다.
[에러 해결]
-끝-
728x90