PyAudio安装问题

时间:2018-09-23 09:12:53

标签: python pyaudio portaudio

我正在尝试在Python 3.7上安装PyAudio。

问题是,当我尝试简单的import pyaudio时,它会打印:

Please build and install the PortAudio Python bindings first.

根据this post,可以通过下载二进制文件并安装车轮来解决该问题。

但是pip install PyAudio-0.2.11-cp37-cp37m-win_amd64.whl仅显示:

Cannot uninstall 'PyAudio'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.

还有其他方法可以完全删除PyAudio来尝试第一个解决方案,还是我必须手动构建PortAudio?

我正在运行Windows 10 64bit。

1 个答案:

答案 0 :(得分:0)

这是我设法解决问题的方法:

我手动删除库文件夹中的PyAudio和Portaudio文件。

然后,按照here所述,我继续this下载了.whl并使用Windows命令pip install PyAudio-0.2.11-cp37-cp37m-win_amd64.whl

进行安装。

由于我没有更多错误输出,因此看起来工作正常。