简体   繁体   中英

How install pyaudio in python3.9?

how install pyaudio in python3.9? C:\Users\Baali>pip install PyAudio cannot install pyaudio in python3.9 how i do?

Go to https://www.lfd.uci.edu/~gohlke/pythonlibs/#pyaudio and download the corresponding wheel, thus for a 32 bit system go with PyAudio‑0.2.11‑cp39‑cp39‑win32.whl and for a 64 bit system choose PyAudio‑0.2.11‑cp39‑cp39‑win_amd64.whl .

Navigate via cmd.exe to your download path, ie

cd <download_path>

and respectively install:

pip install <name_of_the_wheel>

, whereas the name might be either for the 32 bit or 64 bit version.

Voilà, you have PyAudio for Python 3.9 downloaded !

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM