Command:
"sudo apt-get install libasound2 alsa-utils alsa-oss"
Functions app : Linux, python
We install other modules using requirements.txt, But how can i run the above command in functions app.
Please guide/help on this.. Thanks!
Command:
"sudo apt-get install libasound2 alsa-utils alsa-oss"
Functions app : Linux, python
We install other modules using requirements.txt, But how can i run the above command in functions app.
Please guide/help on this.. Thanks!
libasound2 package cannot be installed in general function apps. Rather go for docker container function apps, where this package can be installed in Dockerfile using the below command,
RUN YES | sudo apt-get install libasound2 alsa-utils alsa-oss