You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure if this is an issue in the package or the underlying container image, but the recent update of Python3.11 image broke the package completely and it is impossible to run the speech recognizer. There is an issue created in the Github repo of the project: Azure-Samples/cognitive-services-speech-sdk#1986
The error is not very helpful, just a list of .so files:
Running into similar issues with python:3.9-slim image. As pointed out in the azure's cognitive-services-speech-sdk issue here, azure's sdk doesn't support OpenSSL-3 which is the default in Deb 12 that the latest python images are based on.
The possible workarounds could be to
pin the docker image to an older python docker using its digest info (which I successfully confirmed); or
downgrade the OpenSSL to 1.x (which I haven't confirmed but seems to be an approach discussed on the azure Github issue).
Same comment as #835 (comment), although I am unsure if azure-cognitiveservices-speech in your environment is hitting any libseccomp issues or just the OpenSSL version change.
I'd suggest updating docker and libseccomp on the host. Newer base OS's use newer system calls and an older libseccomp can block them since they are unknown to it. You can verify that it is libseccomp by running the bookworm image with --security-opt seccomp=unconfined.
Hello,
I'm not sure if this is an issue in the package or the underlying container image, but the recent update of Python3.11 image broke the package completely and it is impossible to run the speech recognizer. There is an issue created in the Github repo of the project: Azure-Samples/cognitive-services-speech-sdk#1986
The error is not very helpful, just a list of .so files:
Rollback to an older version seems to help.
The text was updated successfully, but these errors were encountered: