在wither python3或python上使用import soundfile时,我得到:
回溯(最近一次呼叫时间):
文件“”,第1行,在
文件“/home/erezsh/.local/lib/python3.6/site packages/soundfile.py”,第142行,in
引发oserror('sndfile library not found')
错误:未找到sndfile库
我发现this post没有帮助,因为我使用的是soundfile而不是pysoundfile,它提供的链接已断开。
另外,here由于我是使用pip install SoundFile安装的,因此找不到解决方案。
我在windows上使用ubuntu shell。这有什么重要的吗?
我该怎么解决?

最佳答案

您需要安装所需的库:
在Linux上,您需要使用发行版的包管理器安装libsndfile,例如sudo apt-get install libsndfile1
From PyPI

07-24 12:39