我试着使用pip install librosa时出现了下列报错。
ImportError:
Importing the multiarray numpy extension module failed. Most
likely you are trying to import a failed build of numpy.
If you're working with a numpy git repo, try `git clean -xdf` (removes all
files not under version control). Otherwise reinstall numpy.
我一开始以为是numpy版本不兼容,但下载了其他版本也无济于事,最后翻遍了csdn上的文章,都没有解决,最后发现可能是安装librosa的版本不兼容
使用命令:pip install librosa==0.6.0
成功解决问题。