今天在服务器部署一个websocket服务时,用于在有个地方用到了requests发起了一个get请求,在启动服务时出现了

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

这个错误,这个错误在Windows系统上测试是没有出现的。

解决的方法也很简单,卸载已经安装的urllib3版本,然后安装以下指定版本的urllib3

pip install urllib3==1.26.15

即可。