How to install PyAudio in Python

PyAudio provides Python bindings for PortAudio, the cross-platform audio I/O library. With PyAudio, you can easily use Python to play and record audio on a variety of platforms.
Follow the steps to install PyAudio in Windows system:
- Find your Python version by
python --version
, the easiest way to check either you have 64 or 32 Python just open it in the terminal:

- Find the appropriate
.whl
file from here.for example, mine isPyAudio‑0.2.11‑cp38‑cp38‑win_amd64.whl
, and download it. - Go to the folder where it is downloaded
- Install the
.whl
file withpip
, for example :
pip install PyAudio‑0.2.11‑cp38‑cp38‑win_amd64.whl

You have successfully installed PyAudio in your Windows machine.
Subscribe
Login
Please login to comment
0 Discussion