I am a newbie & trying to convert speech to text. For this, I am trying to write a piece of code in Python 3.9/ PyCharm Community Edition.
I try writing this statement (from google.cloud import speech). However it does not recognize google.cloud. It says "Unresolved reference google".
I did install "google.cloud" using the command "pip install google-cloud". However no success.
Any idea how to do I solve this issue?
Thanks Deepak
import google-cloud-speech
. The packagegoogle-cloud
is deprecated as of June 18, 2018 and should not be used. Here is a link to the supported Python packages: github.com/googleapis/… - John Hanleyimport google.cloud.speech
. You will need to install the package first:pip install google-cloud-speech
. - John Hanleypip freeze
, python version and the error messages. - John Hanley