pocketsphinx安装教程mac
时间: 2023-11-09 22:06:26 浏览: 166
Sphinxbase & Pocketsphinx 安裝說明
5星 · 资源好评率100%
以下是在Mac上安装Pocketsphinx的步骤:
1. 安装Homebrew:在终端中输入以下命令并按回车键:
```
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
```
2. 安装Pocketsphinx:在终端中输入以下命令并按回车键:
```
brew install --HEAD watsonbox/cmu-sphinx/cmu-sphinxbase
brew install --HEAD watsonbox/cmu-sphinx/cmu-pocketsphinx
```
3. 安装Python包:在终端中输入以下命令并按回车键:
```
pip install pocketsphinx
```
4. 测试安装:在终端中输入以下命令并按回车键:
```
pocketsphinx_continuous -inmic yes
```
如果一切正常,你应该能够说话并看到Pocketsphinx识别你的语音。
阅读全文