[Python]If this call came from a _pb2.py file, your generated code is out of date and must be regene

本文介绍了一种在Python环境中因protobuf版本过高导致的错误及解决方案。该错误出现在使用抖音弹幕信息处理脚本时,通过将protobuf从4.21.7降级到3.20.1成功解决了问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

在WIN PC中使用python(笔者python版本为3.10.7)处理抖音弹幕信息时,报错如下:

 _descriptor.FieldDescriptor(
  File "C:\Users\xxx\AppData\Local\Programs\Python\Python310\lib\site-packages\google\protobuf\descriptor.py", line 560, in __new__
    _message.Message._CheckCalledFromGeneratedFile()
TypeError: Descriptors cannot not be created directly.
If this call came from a _pb2.py file, your generated code is out of date and must be regenerated with protoc >= 3.19.0.
If you cannot immediately regenerate your protos, some other possible workarounds are:
 1. Downgrade the protobuf package to 3.20.x or lower.
 2. Set PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python (but this will use pure-Python parsing and will be much slower).

More information: https://developers.google.com/protocol-buffers/docs/news/2022-05-06#python-updates

经分析,代码中确实使用了python的protobuf库,根据提示可知需要降低protobuf的版本。

解决方法

在cmd中使用pip命令:pip3 show protobuf (也可以用pip show protobuf,或者使用pip list or pip3 list查看当前安装的所有库,里面有protobuf库的信息)。可以获悉,当前安装的版本是4.21.7。
将protobuf 4.21.7版本降级到3.20.x,即可解决问题。使用如下命令:

pip3 install --upgrade protobuf==3.20.1

补充说明:pip3是python3.x的命令,python3.x依旧兼容之前版本的pip指令。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

iningwei

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值