Anaconda OSError: sndfile library not found
Centos7.x 导入import librosa.display 时出错,提示OSError: sndfile library not found网上找了许多方法,没有起效。这里献上我的解决方法:去这个网站根据自己的电脑下载所需要的tar.gz文件www.linuxfromscratch.org/blfs/view/7.6-systemd/multimedia/libsndfile.h...
·
Centos7.x 导入import librosa.display
时出错,
提示OSError: sndfile library not found
网上找了许多方法,没有起效。
这里献上我的解决方法:
去这个网站根据自己的电脑下载所需要的tar.gz文件www.linuxfromscratch.org/blfs/view/7.6-systemd/multimedia/libsndfile.html
然后放到Centos 7.x服务器中,使用tar 命令进行解压。
[root@cdh03 Rone]# tar -xvf libsndfile-1.0.25.tar.gz
然后进入 libsndfile-1.0.25 目录进行编译
[root@cdh03 Rone]# cd libsndfile-1.0.25/
[root@cdh03 Rone]# ./configure --prefix=/usr --disable-static && make
然后又报出另一个错误:cannot load library 'libsndfile.so.1': libsndfile.so.1:
最后一步 直接使用yum根据提示进行下载就解决了
[root@cdh03 Rone]# yum install libsndfile
更多推荐
已为社区贡献1条内容
所有评论(0)