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

ID:20970 / 打印

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'

解决方法:

立即学习“Python免费学习笔记(深入)”;

该错误通常由 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

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

上一篇: 如何在 PyTorch 中利用 Apple Silicon 的神经网络引擎 (NPU)?
下一篇: 如何监测 Apple Silicon MacBook Pro 上 PyTorch 的 GPU 使用率?

作者:admin @ 24资源网   2025-01-14

本站所有软件、源码、文章均有网友提供,如有侵权联系308410122@qq.com

与本文相关文章

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。