gpt4 book ai didi

python - 没有名为 api_core.protobuf_helpers 的模块。 python2.7和谷歌云

转载 作者:行者123 更新时间:2023-12-01 08:12:39 24 4
gpt4 key购买 nike

我正在尝试the following example通过语言自动检测来测试翻译。

它在 python3 上工作得很好。

但是当尝试使用 python2.7 时,它失败并显示以下消息:

python2.7 example.py multi-language
Traceback (most recent call last):
File "google_example.py", line 295, in <module>
transcribe_file_with_multilanguage()
File "google_example.py", line 214, in transcribe_file_with_multilanguage
from google.cloud import speech_v1p1beta1 as speech
File "/usr/local/lib/python2.7/dist-packages/google/cloud/speech_v1p1beta1/__init__.py", line 17, in <module>
from google.cloud.speech_v1p1beta1 import types
File "/usr/local/lib/python2.7/dist-packages/google/cloud/speech_v1p1beta1/types.py", line 20, in <module>
from google.api_core.protobuf_helpers import get_messages
ImportError: No module named api_core.protobuf_helpers

pip2 freeze | grep google的输出:

google==2.0.2 
google-api-core==1.8.0
google-auth==1.6.3
google-cloud-core==0.29.1
google-cloud-speech==0.36.3
googleapis-common-protos==1.6.0b9

最佳答案

您遇到包名称之间的冲突。正如你有 google package您安装的环境正在尝试从中获取 api_core.protobuf_helpers 模块,而不是从 google-api-core 获取。

要解决此问题,请采取 this answer 的方法。卸载 google 软件包并使用不同的名称重新安装。

另请注意,您正在使用 beta pre-release googleapis-common-protos python. library的。如果您想使用当前的稳定版本,请运行:

pip2 uninstall googleapis-common-protos
pip2 install googleapis-common-protos==1.5.8

关于python - 没有名为 api_core.protobuf_helpers 的模块。 python2.7和谷歌云,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55142941/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com