Sounddevice找不到PortAudio库

时间:2018-03-17 07:26:34

标签: python python-sounddevice

我一直在使用python程序,该程序使用sounddevice模块播放音频。该程序在我的办公室电脑上运行正常(运行 Ubuntu 17.10 ),但不能在我的家用电脑上运行(运行 Linux Mint 18.3 )。它会生成以下错误:

Traceback (most recent call last):
  File "...path/to/my/code.py", line 11, in <module>
    import sounddevice as sd
  File "/home/arif/anaconda3/lib/python3.6/site-packages/sounddevice.py", line 64, in <module>
    raise OSError('PortAudio library not found')
OSError: PortAudio library not found 

如何解决此问题?

1 个答案:

答案 0 :(得分:5)

我可以通过安装portaudio库来解决这个问题。

sudo apt-get install libportaudio2

如果这没有帮助,您也可以尝试关注。

sudo apt-get install libasound-dev