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
时间: 2023-10-13 18:00:34 浏览: 186
openssl-1.1.0f.tar.gz
5星 · 资源好评率100%
这个错误是因为 `urllib3` 库需要 OpenSSL 版本在 1.1.1+ 才能运行,而你当前使用的 `ssl` 模块编译的 OpenSSL 版本是 1.1.0j,与 `urllib3` 不兼容。解决这个问题的方法是更新你的 OpenSSL 版本,或者使用一个支持你当前 OpenSSL 版本的 `urllib3` 版本。你可以参考这个 issue:https://github.com/urllib3/urllib3/issues/2168。
阅读全文