OSError: sndfile library not found解决方法

centos在使用librosa库时(import librosa)报错:

OSError: sndfile library not found

网上的解决方法都是让装libsndfile,但是安装好之后也不行。

原因:版本的原因

解决方法:换个版本 pip install librosa==0.6.0

装好之后执行: import librosa又报错:

ModuleNotFoundError: No module named 'numba.decorators'

解决方法:

把numba也换个版本: pip install numba==0.48.0

装好之后,import就没问题了。

你可能感兴趣的:(Linux,python,linux,python,1024程序员节)