Forums

google cloud pkg

i can't install 2 pkg of google cloud 1) google.cloud.speech_v2 2) google.cloud.storage i know how to intall pkg but for this pkg it's say: ERROR: Could not find a version that satisfies the requirement google.cloud.speech_v2 (from versions: none) ERROR: No matching distribution found for google.cloud.speech_v2

From what I can see on PyPI it looks like the latest version is 2.23.0, so you should just be able to run

pip3.10 install --user google-cloud-speech

...and that will get the version you want.

thanks you!