speech_recognition 库无法在 MacOS 上的 Python 中运行

问题描述 投票:0回答:1

我正在我的 MacOS 设备上制作虚拟助手,并使用了语音识别。

该库需要pyaudio,所以我安装了pyaudio,但它仍然无法工作。

我看到了这个问题,我尝试运行这个命令:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

但是它崩溃了,所以我又回到了零点。

python macos homebrew speech-recognition pyaudio
1个回答
0
投票

首先安装portaudio:

brew install portaudio

然后pyaudio:

pip install pyaudio
© www.soinside.com 2019 - 2024. All rights reserved.