0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

google cloud speechの詰まったところ+解決メモ[Windows][Python]

Last updated at Posted at 2025-01-17

エラー

ModuleNotFoundError: No module named 'google'

試したこと

pip install google

これを実行すると何かがインストールされたので、いけるか?と思ってスクリプトを実行したが、違うエラーが出た。

ImportError: cannot import name speech

そこで、調べたところ、以下を実行すれば解決した。

pip install --upgrade google-cloud
pip install google.cloud.storage
pip install google-cloud-speech

それぞれ別の記事で見つけてきたため、どれが解決策なのかは特定できず。
とりあえずこの3つを実行したらいけたよ、というメモ。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?