MaelDrapier / musicalbeeps

A python module to play sound beeps corresponding to musical notes
https://pypi.org/project/musicalbeeps/
MIT License
21 stars 7 forks source link

(Ubuntu) Solved but thought you should know: need to have libasound2-dev installed #3

Open Wall3nd opened 3 years ago

Wall3nd commented 3 years ago

(Ubuntu) Was getting the error "c_src/simpleaudio_alsa.c:8:10: fatal error: alsa/asoundlib.h: No such file or directory" when trying to install the module, both with pip and setup.

Solution was: sudo apt-get update -y sudo apt-get install -y libasound2-dev

vijay-jaisankar commented 2 years ago

Thanks a lot for this @Wall3nd , very helpful!