登录
首页 >  文章 >  python教程

Python 安装后使用 google-api-python-client 出现“AttributeError: module 'lib' has no attribute 'X509_V_FLAG_CB_ISSUER_CHECK'” 如何解决?

时间:2024-12-16 12:30:50 381浏览 收藏

最近发现不少小伙伴都对文章很感兴趣,所以今天继续给大家介绍文章相关的知识,本文《Python 安装后使用 google-api-python-client 出现“AttributeError: module 'lib' has no attribute 'X509_V_FLAG_CB_ISSUER_CHECK'” 如何解决?》主要内容涉及到等等知识点,希望能帮到你!当然如果阅读本文时存在不同想法,可以在评论中表达,但是请勿使用过激的措辞~

Python 安装后使用 google-api-python-client 出现“AttributeError: module 'lib' has no attribute 'X509_V_FLAG_CB_ISSUER_CHECK'” 如何解决?

错误:模块“lib”没有属性“x509_v_flag_cb_issuer_check”

问题:

在重新安装 python 后,使用 google-api-python-client 库时出现以下错误:

attributeerror: module 'lib' has no attribute 'x509_v_flag_cb_issuer_check'

解决方法:

该错误通常由 pyopenssl 库版本过旧引起。要解决此问题,请执行以下步骤:

  1. 编辑 opensslcrypto.py 文件。
  2. 注释掉有问题的行:
# cb_issuer_check = _lib.x509_v_flag_cb_issuer_check
  1. 使用以下命令更新 pyopenssl:
pip install pip --upgrade
pip install pyopenssl --upgrade
  1. 重新添加注释的行:
CB_ISSUER_CHECK = _lib.X509_V_FLAG_CB_ISSUER_CHECK

现在,应该可以正常工作了。

理论要掌握,实操不能落!以上关于《Python 安装后使用 google-api-python-client 出现“AttributeError: module 'lib' has no attribute 'X509_V_FLAG_CB_ISSUER_CHECK'” 如何解决?》的详细介绍,大家都掌握了吧!如果想要继续提升自己的能力,那么就来关注golang学习网公众号吧!

相关阅读
更多>
最新阅读
更多>
课程推荐
更多>