Question

I'm trying to learn pocketsphinx using python, and therefore wanted to install the same on my Mac OSX Lion. However, I'm really not experienced with installing packages and modules in Python, and the documentation on this one is slightly confusing for me. Here's what I've done till now. I downloaded the pocketsphinx 0.8 version from the following website: http://sourceforge.net/projects/cmusphinx/files/pocketsphinx/0.8/

I tried to search for the same using macports, so I could install it using macports, but the search command could not find pocketsphinx. I'm aware that my question may be terribly amateur and I apologize in advance for the same.

I looked for the answer here and the closest question was this one: Setting Up PocketSphinx in Mac OS X But the question seems unanswered. Therefore, could someone help me install this package on my system?

Was it helpful?

Solution

There is a homebrew formula for pocketsphinx, which (just) installed fine on my system (Mountain Lion). Maybe try that? brew install cmu-pocketsphinx worked for me...

OTHER TIPS

I set up pocketsphinx successfully for python by:

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

The last 4 commands come from this answer.

MacOS 10.14, Python 3.7.

I used this homebrew - https://github.com/watsonbox/homebrew-cmu-sphinx

Which fixed this error for me

A/D library not implemented FATAL_ERROR: "continuous.c", line 246: Failed to open audio device

To test the installation, use

pocketsphinx_continuous -inmic yes

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top