10

我正在尝试使用 python 学习 pocketsphinx,因此想在我的 Mac OSX Lion 上安装它。但是,我真的没有在 Python 中安装包和模块的经验,而且这个文档对我来说有点混乱。这是我到目前为止所做的。我从以下网站下载了 pocketsphinx 0.8 版本:http: //sourceforge.net/projects/cmusphinx/files/pocketsphinx/0.8/

我尝试使用 macports 搜索相同的内容,所以我可以使用 macports 安装它,但搜索命令找不到 pocketsphinx。我知道我的问题可能非常业余,我为此提前道歉。

我在这里寻找答案,最接近的问题是: 在 Mac OS X 中设置 PocketSphinx 但这个问题似乎没有答案。因此,有人可以帮我在我的系统上安装这个包吗?

4

3 回答 3

17

Pocketsphinx有一个自制公式,它(只是)在我的系统(Mountain Lion)上安装得很好。也许试试看?brew install cmu-pocketsphinx为我工作...

于 2013-02-15T08:19:30.333 回答
11

我通过以下方式为python成功设置了pocketsphinx:

brew install cmu-pocketsphinx
brew install swig
pip3 install --upgrade pip setuptools wheel
brew install openal-soft
cd /usr/local/include
ln -s /usr/local/Cellar/openal-soft/1.20.1/include/AL/* .    
pip3 install pocketsphinx

最后 4 个命令来自这个答案

MacOS 10.14,Python 3.7。

于 2020-06-25T00:53:12.387 回答
6

我使用了这个自制软件 - https://github.com/watsonbox/homebrew-cmu-sphinx

为我解决了这个错误

A/D 库未实现 FATAL_ERROR:“continuous.c”,第 246 行:无法打开音频设备

要测试安装,请使用

pocketsphinx_continuous -inmic 是

于 2014-12-31T03:22:23.167 回答