おはようございます。朝からAnacondaを再インストールしていると、Google Text-To-Speechのコードが動かなくなり、困りました。
Windows11 > Anaconda > Jupyter Notebook/Lab で下のエラーメッセージ出たときのお直し忘備録を記載しておきます。
ImportError: cannot import name 'texttospeech_v1' from 'google.cloud' (unknown location)
Python
pip install google-cloud-texttospeech
Python
def explicit():
from google.cloud import storage
# Explicitly use service account credentials by specifying the private key
# file.
storage_client = storage.Client.from_service_account_json(
'service_account.json')
# Make an authenticated API request
buckets = list(storage_client.list_buckets())
print(buckets)
以上です。。