How do I install PyAudio on Python 3.7?

后端 未结 9 1164
小鲜肉
小鲜肉 2020-12-06 02:06

I am currently trying to install PyAudio on Python 3.7 but when I use the command "pip install pyaudio", an error message appears:

9条回答
  •  隐瞒了意图╮
    2020-12-06 03:02

    Extract to https://people.csail.mit.edu/hubert/pyaudio/

    In Windows:

    Install using pip:

    python -m pip install pyaudio 
    

    Currently, there are wheels compatible with the official distributions of Python 2.7, 3.4, 3.5, and 3.6.

    Apparently there is no version of that library for Python 3.7, so I'd try downgrading the Python version.

    If you continue to have problems with the error of .exe, in this answer https://stackoverflow.com/a/41724634/7290770 they solve it.

提交回复
热议问题