我访问了许多论坛,尝试了不同的方法,如 brew、pip、port 等等,但仍然面临同样的错误。
View this Image for more detail
src/_portaudiomodule.c:29:10: fatal error: 'portaudio.h' file not found
#include "portaudio.h"
^~~~~~~~~~~~~
1 error generated.
error: command '/usr/bin/gcc' failed with exit code 1
有人可以帮忙吗?
答案 0 :(得分:1)
此解决方案已在 M1 Mac 上进行测试[请与其他人核对]。
在您的系统上安装 HomeBrew 后,执行 PortAudio 的安装。接下来按照下面提到的步骤操作:
使用命令安装PortAudio
<块引用>sudo brew install portaudio
PortAudio安装成功后,输入以下命令。
<块引用>sudo nano $HOME/.pydistutils.cfg
接下来,在打开的窗口中输入以下几行
[build_ext]
include_dirs=/Users/<enter-your-system-username>/homebrew/Cellar/portaudio/19.20140130/include/
include_dirs=/Users/<enter-your-system-username>/homebrew/Cellar/portaudio/19.20140130/lib/
注意:PortAudio 位置可能因您而异,并且不要忘记替换您的 PC 用户名。
最后运行命令
<块引用>pip 安装 pyaudio
或
<块引用>pip3 安装 pyaudio