ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the ‘ssl‘

Error reported:

ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+, 
currently the ‘ssl’ module is compiled with OpenSSL 1.1.0h 27 Mar 2018.

Solution: Lower the version of urllib3

pip install urllib3==1.26.15

reference

Guess you like

Origin blog.csdn.net/mouday/article/details/132987241