跑百度飞桨项目中碰的一个问题
module 'lib' has no attribute 'X509_V_FLAG_CB_ISSUER_CHECK'
解决
pip install pip --upgrade
pip install pyopenssl --upgrade
上一篇
Python CERTIFICATE_VERIFY_FAILED 错误解决方法
解决 Python requests 库请求时遇到的 CERTIFICATE_VERIFY_FAILED 错误,包括安装 certifi 包、macOS 系统下的证书安装以及代码层面解决方法。
下一篇
解决 Python 'module' object has no attribute 'SSL_ST_INIT' 错误
本文介绍了如何解决 Python 中出现的 'module' object has no attribute 'SSL_ST_INIT' 错误,包括使用 pip install pyopenssl 和 sudo python -m easy_install --upgrade pyOpenSSL 两种方法。