- Newest
- Most votes
- Most comments
Hi, it looks like the urllib3 issue here is coming from the requests library. Please check the requests library version installed on your core device by using pip3 show requests command. If it is greater than or equal to 2.30.0, please remove it and install it again using pip3 install "requests<2.30.0" (or you can also use pip3 upgrade). This should install urllib3 version < 2.0 which is compatible with your openssl version.
If the urllib3>=2.0 is coming from some other library, you can choose to uninstall and install again the urllib3 < 2.0 library only.
Doc for migrating to urllib3 v2.0 and potential remediation steps for the issue with openssl- https://urllib3.readthedocs.io/en/latest/v2-migration-guide.html#ssl-module-is-compiled-with-openssl-1-0-2-k-fips
