我无法安装PyAudio

时间:2019-12-24 10:00:25

标签: python pip 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。点数已升级

我已经尝试过“ python3.7 -m pip install PyAudio”,它仍然无法正常工作。 我也尝试从.whl安装它,但是当我运行命令时,出现以下消息:“错误:此平台不支持PyAudio-0.2.11-cp34-cp34m-win32.whl。” ,我尝试使用32位和64位。

请帮助

5 个答案:

答案 0 :(得分:0)

您需要安装Microsoft Visual C ++ 14.0

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

答案 1 :(得分:0)

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

显然,该库没有适用于Python 3.7的版本,因此,我将尝试降级Python版本。

在此站点https://www.lfd.uci.edu/~gohlke/pythonlibs/#pyaudio上下载转盘。

如果您使用32位,请选择PyAudio‑0.2.11‑cp37‑cp37m–win32.whl;如果是64位,请选择PyAudio‑0.2.11‑cp37‑cp37m–win_amd64.whl。然后转到您的下载文件夹:

self

答案 2 :(得分:0)

`
 // Raise Context menu Opening Event
 var args = CreateInstance<ContextMenuEventArgs>(element, true);
 args.RoutedEvent = FrameworkElement.ContextMenuOpeningEvent;
 element.RaiseEvent(args);
 
 contextMenu.IsOpen = true;
`

pip install pipwin pipwin install pyaudio 将自动下载所需的wheel,因为它会为Windows安装非官方的Python软件包二进制文件。

答案 3 :(得分:0)

每当出现构建类型错误或说需要 C++ 14.0 构建工具时,只需执行以下简单步骤-

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

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

注意:下载安装或保留python的轮文件。

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

enter image description here

答案 4 :(得分:-1)

pip install pipwin

pipwin 安装 pyaudio

这对我来说直接有效,无需安装任何 Visual Studio 的东西,python --version 是 3.9.5。

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