Automatic_Speech_Recognition
Automatic_Speech_Recognition copied to clipboard
install libsndfile
Dear, There shows:This project depends on scikit.audiolab, for which you need to have libsndfile installed in your system. How should I do for this?I couldn't open the link"libsndfile"
Just download it an follow the instructions on the website. it's not that hard. You sure you should be working with computers? Anyhow, just do the following: Download: wget http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.28.tar.gz Extract: tar -xzf libsndfile-1.0.28.tar.gz Install: cd libsndfile-1.0.28/ && ./configure && make && make install
Easiest to do in conda:
conda install -c conda-forge libsndfile
thanks for everyone!