我正在尝试在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。