作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试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/
我正在尝试the following example通过语言自动检测来测试翻译。 它在 python3 上工作得很好。 但是当尝试使用 python2.7 时,它失败并显示以下消息: python2.
我是一名优秀的程序员,十分优秀!