如何安装PyAudio

下载pyaudio的wheel文件:

  1. 打开网站(Python Extension Packages for Windows - Christoph Gohlke (uci.edu))
  2. 找到匹配的wheel文档,单击进行下载。

安装pyaudio

  1. 打开cmd(Win+R),输入cmd,回车。如何安装PyAudio_第1张图片
  2. 在命令行中输入cd+空格+wheel文件保存的地址,回车。
  3. 输入pip install wheel文件名,回车即可,他会自动进行安装。

若出现ERROR: PyAudio-0.2.11-cp37-cp37m-win32.whl is not a supported wheel on this platform.的问题,即为版本不对,可以参考 ERROR: PyAudio-0.2.11-cp37-cp37m-win32.whl is not a supported wheel on this platform._LuniqueX的博客-CSDN博客

你可能感兴趣的:(pyaudio,python)