当前位置: 首页 > 工具软件 > PortAudio > 使用案例 >

pyaudio库安装(mac)fatal error: ‘portaudio.h‘ file not found

虞展
2023-12-01

快要被自己蠢哭了
首先,安装portaudio

brew install portaudio

其次,找到portaudio的安装路径

sudo find / -name "portaudio.h"

在我的例子中,我的路径存放在/opt/homebrew/Cellar/portaudio/19.7.0/include/portaudio.h

最后,把portaudio路径替换成你自己的,运行下面这个代码

pip install --global-option='build_ext' --global-option='-I/opt/homebrew/Cellar/portaudio/19.7.0/include' --global-option='-L/opt/homebrew/Cellar/portaudio/19.7.0/lib' pyaudio
 类似资料: