Getting "error: Microsoft Visual C++ 14.0 is required." when installing PyAudio

Getting "error: Microsoft Visual C++ 14.0 is required." when installing PyAudio

C:\Users\gabri\OneDrive\Desktop>pip3 install pyaudio
Collecting pyaudio
  Using cached https://files.pythonhosted.org/packages/ab/42/b4f04721c5c5bfc196ce156b3c768998ef8c0ae3654ed29ea5020c749a6b/PyAudio-0.2.11.tar.gz
Installing collected packages: pyaudio
    Running setup.py install for pyaudio ... error
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\gabri\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\Users\gabri\AppData\Local\Temp\pip-install-r9cgblze\pyaudio\setup.py'"'"'; __file__='"'"'C:\Users\gabri\AppData\Local\Temp\pip-install-r9cgblze\pyaudio\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record 'C:\Users\gabri\AppData\Local\Temp\pip-record-032v86d_\install-record.txt' --single-version-externally-managed --compile --user --prefix=
         cwd: C:\Users\gabri\AppData\Local\Temp\pip-install-r9cgblze\pyaudio\
    Complete output (9 lines):
    running install
    running build
    running build_py
    creating build
    creating build\lib.win-amd64-3.7
    copying src\pyaudio.py -> build\lib.win-amd64-3.7
    running build_ext
    building '_portaudio' extension
    error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": https://visualstudio.microsoft.com/downloads/
    ----------------------------------------
ERROR: Command errored out with exit status 1: 'C:\Users\gabri\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\Users\gabri\AppData\Local\Temp\pip-install-r9cgblze\pyaudio\setup.py'"'"'; __file__='"'"'C:\Users\gabri\AppData\Local\Temp\pip-install-r9cgblze\pyaudio\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record 'C:\Users\gabri\AppData\Local\Temp\pip-record-032v86d_\install-record.txt' --single-version-externally-managed --compile --user --prefix= Check the logs for full command output.

我的python版本:3.7.4并且pip升级了

我已经试过了"python3.7 -m pip install PyAudio",但还是不行。

我也尝试过从 .whl 安装它,但是当我 运行 命令时,出现以下消息:

ERROR: PyAudio-0.2.11-cp34-cp34m-win32.whl is not a supported wheel on this platform."

我试过 32 位和 64 位。

您需要安装Microsoft Visual C++ 14.0

这应该有效 https://visualstudio.microsoft.com/visual-cpp-build-tools/

目前,有与 Python 2.7、3.4、3.5 和 3.6 的官方发行版兼容的轮子。

显然,Python 3.7 没有该库的版本,所以我会尝试降级 Python 版本。

在此站点下载轮子:https://www.lfd.uci.edu/~gohlke/pythonlibs/#pyaudio

选择:

  • PyAudio‑0.2.11‑cp37‑cp37m‑win32.whl 如果您使用 32 位
  • PyAudio‑0.2.11‑cp37‑cp37m‑win_amd64.whl 64 位

然后转到您的下载文件夹:

cd <your_donwload_path>
pip install PyAudio‑0.2.11‑cp37‑cp37m‑win_amd64.whl
pip install pipwin

pipwin install pyaudio

pipwin 会自动下载所需的 wheel,因为它会为 windows.

安装非官方的 Python 包二进制文件

每当出现构建类型错误或需要 C++ 14.0 构建工具时,只需按照以下简单步骤操作即可-

  1. 转到并向下滚动找到 Pyaudio - enter link description here

  2. 这里你必须根据你的 python 版本和你的 python 32 位或 64 位下载 wheel 文件。

注意: 下载安装 python 的 wheel 文件或保留在那里。

示例: 我的 python 版本是 3.8,安装的 python 是 32 位所以我下载了这个 -- PyAudio‑0.2.11‑cp38‑cp38‑win32.whl

enter image description here

pip install pipwin

pipwin 安装 pyaudio

无需安装任何 visual studio 东西,这对我来说立即有效,python --版本是 3.9.5。

几天前我刚刚在我的机器上全新安装了 windows 10