简体   繁体   English

python3.9如何安装pyaudio?

[英]How install pyaudio in python3.9?

how install pyaudio in python3.9?如何在 python3.9 中安装 pyaudio? C:\Users\Baali>pip install PyAudio cannot install pyaudio in python3.9 how i do? C:\Users\Baali>pip install PyAudio 无法在 python3.9 中安装 pyaudio 我该怎么办?

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 . 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 64 位系统选择PyAudio‑0.2.11‑cp39‑cp39‑win_amd64.whl

Navigate via cmd.exe to your download path, ie通过 cmd.exe 导航到您的下载路径,即

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. ,而名称可能是 32 位或 64 位版本。

Voilà, you have PyAudio for Python 3.9 downloaded !瞧,你已经下载了 Python 3.9 的 PyAudio

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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