Hi @Allan_Zimmermann , @kowts .
when i am using invoke code activity in openRPA and use python code in that then i am getting this error : -
“# ImportError : urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the ‘ssl’ module is compiled with ‘OpenSSL 1.1.0j 20 Nov 2018’. See: https://github.com/urllib3/urllib3/issues/2168”.
Help me to resolve the issue
Please read this.
okeh sorry . I understand
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
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.