繁体   English   中英

谷歌云文本语音“没有属性'SynthesisInput'”错误

[英]Google cloud texttospeech "has no attribute 'SynthesisInput'" error

https://cloud.google.com/text-to-speech/docs/libraries?hl=pt-br#client-libraries-install-python

在尝试主要的谷歌示例时,我收到了这个错误:

AttributeError                            Traceback (most recent call last)
<ipython-input-92-866a7868dbb4> in <module>
     10 
     11 # Set the text input to be synthesized
---> 12 synthesis_input = texttospeech.SynthesisInput(text="Hello, World!")
     13 
     14 # Build the voice request, select the language code ("en-US") and the ssml

AttributeError: module 'google.cloud.texttospeech' has no attribute 'SynthesisInput'

有什么建议吗? 使用 conda-forge:google-cloud-texttospeech 1.0.1

我使用相同的库(google-cloud-texttospeech==1.0.1)尝试了您的示例,但它也失败了。 解决此问题的方法是只需使用!pip install --upgrade google-cloud-texttospeech将您的库更新到最新版本(2.3.0),您的代码片段就会起作用。

使用过时的 1.0.1 版本时出错。

在此处输入图像描述

出于测试目的,我包括打印编码响应。 在此处输入图像描述

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM