Selenium
-
NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+ 에러 해결Dev 2024. 3. 16. 17:43
selenium webdriver 를 사용해 Chorme 창을 열 때 아래 warnings를 만났다. 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( urllib3 v2 가 OpenSSL 1.1.1+ 를 지원하지 않는다는 것 같다. 아래 커멘트를 입력해 새로운 urllib3 버전을 다운받으면 해결! brew install openssl@1.1 pip3 install urllib3==1.26.15