# 파이썬 실행시 NotOpenSSLWarning
- 오류 내용: urllib3 v2가 OpenSSL 1.1.1+ 를 지원하지 않아 생기는 문제로 확인
/Users/s2w/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: <https://github.com/urllib3/urllib3/issues/3020>
warnings.warn(
- 해결 방법
$ brew install openssl@1.1
$ pip install urllib3==1.26.6
'인턴 메모' 카테고리의 다른 글
Kafka 정리 (0) | 2024.07.29 |
---|---|
GitHub Code Crawling (Selenium) (0) | 2024.07.21 |
Github API Search Code Trouble Shooting(?) (0) | 2024.07.09 |
GitHub File SHA Hash Test (0) | 2024.07.05 |
Github API - Search Code (1) | 2024.07.04 |