Getting Error when use python

Hi @Vivek_Sharma

This is an issue with python. The error message suggests that urllib3 v2.0 requires OpenSSL version 1.1.1 or newer, but your Python environment is using an older version of OpenSSL (1.1.0j). Check the github link.

To Resolve this error downgrade urllib3 and make sure first to remove the one you have installed, then:

pip install urllib3==1.26.6

This approach worked for me previously, so I recommend searching for a solution on your own. There are many solutions available, so it’s important to find the one that works best for you.

3 Likes