The answer by Agalin is already great and I just want to explain it in a step by step format for a novice like myself:
- find your Python version by
python --versionmine is3.7.3for example - the easiest way to check either you have 64 or 32 Python just open it in the terminal:
- find the appropriate
.whlfile from here, for example mine isPyAudio‑0.2.11‑cp37‑cp37m‑win_amd64.whl, and download it. - go to the folder where it is downloaded for example
cd C:\Users\foobar\Downloads - install the
.whlfile withpipfor example in my case:
pip install PyAudio-0.2.11-cp37-cp37m-win_amd64.whl