Mac 安装 pyaudio 失败
2021-02-17 本文已影响0人
夜空最亮的9星
Mac 安装 pyaudio 失败
fatal error: 'portaudio.h' file not found
#include "portaudio.h"
^~~~~~~~~~~~~
1 error generated.
error: command 'gcc' failed with exit status 1
找不到portaudio.h文件。
针对这个问题,本来以为是PIP安装的时候下载的包错了,后来对着文件名进行搜索了下,原来是pyaudio的运行需要依赖于portaudio这个库。
因此需要从http://portaudio.com/download.html这个网址上下载相应的软件包,然后进行正常的C++编译和安装。
mac 直接执行:
brew install portaudio
再次运行
pip install pyaudio
果然非常顺利就成功了