I'm trying to install pyalsaaudio
on my Raspberry PI Pico board.
Firmware for my board I have build myself from micropython repo using documentation on how to do it from raspberry.
In documentation for micropython there is a section about Installing packages with mip but mip
package is missing
>>> import mip
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: no module named 'mip'
Another way I tryed to install this package was via Thonny package manager, but again, with no positive results.
error:
Failed to build pyalsaaudio
Error Command
'['C:\\Users\\<username>\\AppData\\Local\\pipkin\\cache\\workspaces\\fa71e45a1e41e660688341b77ee2813a\\Scripts\\python.exe', '-I', '-m', 'pip', '--no-color', '--disable-pip-version-check', '--trusted-host', '127.0.0.1', 'install', '--no-compile', '--use-pep517', '--upgrade-strategy', 'only-if-needed', 'pyalsaaudio', '--index-url', 'http://127.0.0.1:36628']' returned non-zero exit status 1.
Is there another way to install this package?
Or is there other package that will allow me to record audio from microphone?