作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
感谢你们对我的帮助!
当我在 Jupyter notebook 中使用谷歌云语音时,运行以下代码时发生错误:
import os
os.environ["GOOGLE_APPLICATION_CREDENTIALS"] = os.path.join(os.path.realpath('.'),'Lu/Lu-xxxxxxxxxx.json')
os.path.join(os.path.realpath('.'),'Lu/Lu-xxxxxxxxxx.json')
with open("Lu/Lu-xxxxxxxxxx.json") as f:
GOOGLE_CLOUD_SPEECH_CREDENTIALS = f.read()
def transcribe_gcs(gcs_uri):
from google.cloud import speech
...
client = speech.SpeechClient()
audio = ...
config = ...
operation = client.long_running_recognize(config, audio)
...
response = operation.result(timeout=90)
...
# Imports the Google Cloud Storage client library
from google.cloud import storage
# Instantiates a client()
storage_client = storage.Client()
DefaultCredentialsError:File /home/luffy/Lu/Lu-xxxxxxxxxx.json was not found.
最佳答案
原来这可能是配置问题。我没有很好地完成谷歌云的所有“设置环境”过程。收藏此部分quickstart for ubuntu and Debian ,我将项目更改为我现在正在工作的项目(我之前在google cloud上更改了我的项目,但没有关注这个网站来更改我的项目)。我为我的本地项目文件夹设置了“virtualenv”环境。经过这些步骤,我成功了!
关于python - 错误 :Can't finish "storage_client = storage.Client()" in google cloud speech,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51699287/
感谢你们对我的帮助! 当我在 Jupyter notebook 中使用谷歌云语音时,运行以下代码时发生错误: import os os.environ["GOOGLE_APPLICATION_CRED
我是一名优秀的程序员,十分优秀!