python 问题修复ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+
这个问题时python版本安装的 urllib3版本过高,而openssl版本太低导致的
解决无非两种方法,降低urllib3版本或者升级openssl版本文章来源地址https://www.toymoban.com/news/detail-506653.html
升级openssl版本
//只针对centos,如果是ubunt系统,把yum改 apt-get
yum -y update
yum -y install openssl@1.1
降低urllib版本
python3 -m pip install urllib3==1.26.6
文章来源:https://www.toymoban.com/news/detail-506653.html
到了这里,关于python 问题修复ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!