I am trying to use a recent Amazon translation service with:
transcribe = boto3.client('transcribe')
and I get the following error:
botocore.exceptions.UnknownServiceError: Unknown service: 'transcribe'. Valid service names are: ...
I tried updating boto3 and botocore using:
pip install botocore
pip install boto3
source
share