Trying to install pyaudio using pip

让人想犯罪 __ 提交于 2019-12-04 06:29:56

问题


I try to install pyaudio in pycharm, and

I get this error

error: command 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\BIN\\cl.exe' 
failed with exit status 2

I used pip install pyaudio command.

Copy comment:

  • I downloaded PyAudio‑0.2.11‑cp37‑cp37m‑win_amd64.whl
  • try to install it using this command

    pip install PyAudio‑0.2.11‑cp37‑cp37m‑win_amd64
    

but it does not work and get this error

ERROR: Could not find a version that satisfies the requirement PyAudio-0.2.11-cp37-cp37m-win_amd64 (from versions: none) 
ERROR: No matching distribution found for PyAudio-0.2.11-cp37-cp37m-win_amd64

回答1:


Try this:

pip install pipwin
pipwin install pyaudio

pipwin is like pip, but it installs precompiled Windows binaries provided by Christoph Gohlke. Saves you a lot of manual googling and downloading.




回答2:


Maybe this is not a solution to your error, but it is one of the easiest ways to install it on Windows.

You can simply grab the proper Wheel package based on current Python version from here and then install it with pip install <PyAudio‑0.2.11-...>. Also, there is no need to have MSVC installed.



来源:https://stackoverflow.com/questions/55936179/trying-to-install-pyaudio-using-pip

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!