解决urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the ssl module is compiled with OpenSSL 1.

原因是urllib3的版本太高了,卸载掉然后下一个低版本的就好了

卸载

pip uninstall urllib3

重新安装

pip install urllib3==1.23 -i https://pypi.tuna.tsinghua.edu.cn/simple

你可能感兴趣的:(python)