错误(未知位置)?
import io
import os
import google
# Imports the Google Cloud client library
from google.cloud import speech
from google.cloud.speech import enums
from google.cloud.speech import types
........
Traceback (most recent call last):
File "F:/FILES/4 Year/Gp/specch-Rec-Demo/google-cloud.py", line 11, in <module>
from google.cloud import speech
ImportError: cannot import name 'speech' from 'google.cloud' (unknown location)
答案 0 :(得分:0)
我建议使用virtual environment来使用语音API和islote依赖项。
设置环境后,您应该使用以下命令install依赖性:
pip install --upgrade google-cloud-speech
为了开始使用此库,您应该创建一个服务帐户,并将环境变量 GOOGLE_APPLICATION_CREDENTIALS 设置为包含您的服务帐户密钥的JSON文件的文件路径,建议您遵循下一页quickstart来学习如何通过Python使用Google Speech to Text