3👍
I faced the same issue. Try doing pip install urllib3[secure]
, urllib3 doesn’t have certs by default so you have to do this. This is also shown here –> https://urllib3.readthedocs.org/en/latest/security.html#security
1👍
you can install the following package
python -m pip install pyopenssl pyasn1 ndg-httpsclient
I got the same issue resolved by installing the above library.
Source:stackexchange.com