"certificate verify failed: unable to get local issuer certificate"
"ConnectionError: Couldn't reach '~~~~~' on the Hub (SSLError)"
huggingface 쓰면서 조우한 error인데 huggingface에만 국한된건 아니고
urllib 나 requests 등 https 통신 할때 발생하는 SSLerror 이다.
내 환경은 우분투 였고 https://stackoverflow.com/questions/10667960/python-requests-throwing-sslerror 이곳 통해 해결
# debian
os.environ['REQUESTS_CA_BUNDLE'] = os.path.join(
'/etc/ssl/certs/',
'ca-certificates.crt')
SSL인증 파일 (/etc/ssl/certs/ca-certificates.crt) 위치를 넣어준 것. 윈도우도 비슷하게 해결될것 같다.
반응형
'Programming > python' 카테고리의 다른 글
jupyter server 띄우기 remote 접근 (0) | 2024.04.22 |
---|---|
간결한 python 문법을 쓰자 - lambda (0) | 2022.05.09 |
간결한 python 문법을 쓰자 - one line condition (0) | 2022.04.12 |
[vscode] 외부 모듈을 debug하고 싶을때 (0) | 2021.11.23 |
[python] dataframe 의 column 순서변경 (0) | 2020.02.13 |