This is a precompiled PyAudio wheel package for macOS ARM (Apple Silicon).
It comes with PortAudio built-in, so you can install it directly without compiling PortAudio yourself.
Repository URL: https://github.com/BakaDream/pyaudio-macos-arm-wheel
- Visit the Releases page.
- Find the PyAudio wheel corresponding to your Python version, e.g., cp312 for Python 3.12.
- Copy the download link and install using pip or uv.
- Test the installation to confirm that PyAudio works properly.
pip install <corresponding wheel link>Example (Python 3.12):
pip install https://github.com/BakaDream/pyaudio-macos-arm-wheel/releases/download/v1.0.1/pyaudio-0.2.14-cp312-cp312-macosx_11_0_arm64.whlNote:
uvis a Python package management tool that supports custom PyPI sources.
uv pip install <corresponding wheel link>Example (Python 3.12):
uv pip install https://github.com/BakaDream/pyaudio-macos-arm-wheel/releases/download/v1.0.1/pyaudio-0.2.14-cp312-cp312-macosx_11_0_arm64.whlimport pyaudio
p = pyaudio.PyAudio()
print("PyAudio initialized successfully!", p)
p.terminate()Example output:
PyAudio initialized successfully! <pyaudio.PyAudio object at 0x...>
🌟If this project has been helpful to you, please consider giving it a Star🌟 on the GitHub repository. Your support is greatly appreciated!