在 Azure Functions 应用程序中,我们如何执行 How can i 运行 this command "sudo apt-get install libasound2 alsa-utils alsa-oss"

In Azure Functions app, how can we execute the How can i run this command "sudo apt-get install libasound2 alsa-utils alsa-oss"

命令:

"sudo apt-get install libasound2 alsa-utils alsa-oss" 

函数应用:Linux、python

我们使用requirements.txt安装其他模块,但是我如何运行函数应用程序中的上述命令

请guide/help..谢谢!

libasound2 包无法安装在一般功能应用中。而是选择 docker 容器功能应用程序,可以使用以下命令将此包安装在 Dockerfile 中,

RUN YES | sudo apt-get install libasound2 alsa-utils alsa-oss