Python pocketsphinx RequestError:缺少 PocketSphinx 模块:确保正确设置了 PocketSphinx

Posted

技术标签:

【中文标题】Python pocketsphinx RequestError:缺少 PocketSphinx 模块:确保正确设置了 PocketSphinx【英文标题】:Python pocketsphinx RequestError: missing PocketSphinx module: ensure that PocketSphinx is set up correctly 【发布时间】:2016-07-31 03:21:43 【问题描述】:

我正在尝试制作一个 Python 应用程序,它可以使用 PyAudio、SpeechRecognition 和 PocketSphinx 录制音频并将其翻译成英文文本。我在 Mac OS X El Capitan 版本 10.11.2 上运行。

按照this one 等教程,我下载了 PyAudio 0.2.9 版、SpeechRecognition 和 PocketSphinx。我已将它们安装到 Conda 环境中。我已按照site 中的说明在我的 OS X 上使用brew install swig git python,希望对您有所帮助。

这是我的代码:

# Load packages
import speech_recognition as sr
import sphinxbase
import pocketsphinx

# obtain audio from the microphone
r = sr.Recognizer()
with sr.Microphone() as source:
    print("Say something!")
    audio = r.listen(source)

# write audio to a WAV file
with open("microphone-results.wav", "wb") as f:
    f.write(audio.get_wav_data())

到目前为止,一切都很好。我可以毫无问题地录制和播放我的 WAV 文件。但这里出了问题……

r = sr.Recognizer()
with sr.AudioFile('microphone-results.wav') as source:
    audio = r.record(source) # read the entire audio file

try:
    print("You said " +  r.recognize_sphinx(audio))
except LookupError:         # speech is unintelligible
    print("Could not understand audio")

当我运行这段代码时,我得到: RequestError: missing PocketSphinx module: ensure that PocketSphinx is set up correctly.

我已经在全局和虚拟 conda 环境中安装了 PocketSphinx 和 Sphinxbase,但无济于事。 Google / SO 帖子上有关此错误的文档接近于零,因此我不确定发生了什么。任何帮助/建议将不胜感激。

以下是我的 conda 虚拟环境中已安装的软件包及其版本的列表:

# packages in environment at /Users/nathancheever/anaconda/envs/audio_2:
#
appnope                   0.1.0                    py27_0
backports-abc             0.4                       <pip>
backports.ssl-match-hostname 3.4.0.2                   <pip>
backports_abc             0.4                      py27_0
decorator                 4.0.9                    py27_0
freetype                  2.5.5                         0
ipykernel                 4.3.1                    py27_0
ipython                   4.1.2                    py27_2
ipython-genutils          0.1.0                     <pip>
ipython_genutils          0.1.0                    py27_0
ipywidgets                4.1.1                    py27_0
jinja2                    2.8                      py27_0
jsonschema                2.4.0                    py27_0
jupyter                   1.0.0                    py27_2
jupyter-client            4.2.2                     <pip>
jupyter-console           4.1.1                     <pip>
jupyter-core              4.1.0                     <pip>
jupyter_client            4.2.2                    py27_0
jupyter_console           4.1.1                    py27_0
jupyter_core              4.1.0                    py27_0
libpng                    1.6.17                        0
markupsafe                0.23                     py27_0
mistune                   0.7.2                    py27_1
nbconvert                 4.1.0                    py27_0
nbformat                  4.0.1                    py27_0
notebook                  4.1.0                    py27_2
openssl                   1.0.2g                        0
path.py                   8.1.2                    py27_1
pexpect                   4.0.1                    py27_0
pickleshare               0.5                      py27_0
pip                       8.1.1                    py27_1
ptyprocess                0.5                      py27_0
pyaudio                   0.2.9                     <pip>
pygments                  2.1.3                    py27_0
pyqt                      4.11.4                   py27_1
python                    2.7.11                        0
pyzmq                     15.2.0                   py27_0
qt                        4.8.7                         1
qtconsole                 4.2.1                    py27_0
readline                  6.2                           2
setuptools                20.6.7                   py27_0
simplegeneric             0.8.1                    py27_0
singledispatch            3.4.0.3                  py27_0
sip                       4.16.9                   py27_0
six                       1.10.0                   py27_0
speechrecognition         3.4.2                     <pip>
sphinxbase                0.8                       <pip>
sqlite                    3.9.2                         0
ssl_match_hostname        3.4.0.2                  py27_0
terminado                 0.5                      py27_1
tk                        8.5.18                        0
tornado                   4.3                      py27_0
traitlets                 4.2.1                    py27_0
wheel                     0.29.0                   py27_0
zlib                      1.2.8                         0

【问题讨论】:

消息说明了一切,您需要删除旧的 sphinxbase 并安装 pocketsphinx 包。 【参考方案1】:

正如@Nikolay Shmyrev 提到的,您可以简单地

pip install pocketsphinx

解决问题

【讨论】:

【参考方案2】:

您将需要这些库来编译pocketsphinx:

sudo apt-get install -qq python python-dev python-pip build-essential swig libpulse-dev

之后安装pocketsphinx就很简单了:

sudo pip install pocketsphinx

【讨论】:

【参考方案3】:

我试图做同样的事情,但遇到了麻烦

# Make sure we have up-to-date versions of pip, setuptools and wheel:
$ pip install --upgrade pip setuptools wheel

$ pip install --upgrade pocketsphinx

来自 pocketsphinx 文档https://pypi.python.org/pypi/pocketsphinx

错误是

错误:命令“gcc”失败,退出状态为 1

我正在使用 mac 并需要安装 x-code 命令行工具。 从命令行

xcode-select --install

然后 pip 安装工作并且

r.recognize_sphinx(audio)

作品

【讨论】:

【参考方案4】:

同样的问题

sudo apt-get install libasound2-dev

解决了。

Python 3.6 Ubuntu 18.04.4 LTS

【讨论】:

【参考方案5】:

我也遇到了类似的问题。问题是没有安装pocketsphinx。但是当我尝试显式安装它时,它吐出了这个:

Installing collected packages: pocketsphinx
    Running setup.py install for pocketsphinx ... error
    ERROR: Command errored out with exit status 1:
     command: /usr/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-54lpsfk9/pocketsphinx_4a1855908d0d459d9da4cb55a9fa821d/setup.py'"'"'; __file__='"'"'/tmp/pip-install-54lpsfk9/pocketsphinx_4a1855908d0d459d9da4cb55a9fa821d/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /tmp/pip-record-hun5knqg/install-record.txt --single-version-externally-managed --compile --install-headers /usr/include/python3.9/pocketsphinx                                                              
         cwd: /tmp/pip-install-54lpsfk9/pocketsphinx_4a1855908d0d459d9da4cb55a9fa821d/                                              
    Complete output (6 lines):                                                                                                      
    running install                                                                                                                 
    running build_ext                                                                                                               
    building 'sphinxbase._sphinxbase' extension                                                                                     
    swigging deps/sphinxbase/swig/sphinxbase.i to deps/sphinxbase/swig/sphinxbase_wrap.c                                            
    swig -python -modern -threads -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/android -Ideps/sphinxbase/swig -outdir sphinxbase -o deps/sphinxbase/swig/sphinxbase_wrap.c deps/sphinxbase/swig/sphinxbase.i                
    error: command 'swig' failed: No such file or directory                                                                         
    ----------------------------------------                                                                                        
ERROR: Command errored out with exit status 1: /usr/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-54lpsfk9/pocketsphinx_4a1855908d0d459d9da4cb55a9fa821d/setup.py'"'"'; __file__='"'"'/tmp/pip-install-54lpsfk9/pocketsphinx_4a1855908d0d459d9da4cb55a9fa821d/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /tmp/pip-record-hun5knqg/install-record.txt --single-version-externally-managed --compile --install-headers /usr/include/python3.9/pocketsphinx Check the logs for full command output. 

通过错误发现:error: command 'swig' failed: No such file or directory 并向后跟踪发现它用于构建一些包扩展;我可以推断出一些 sphinxbase 扩展。基本上,安装 swig 为我解决了这个问题。

Python:3.9 口袋狮身人面像:0.1.15 语音识别:3.8.1 安装工具:57.0.0 痛饮:4.0.2-2 操作系统:Manjaro Linux

如果这些很重要。

【讨论】:

您收到的错误消息在答案中并不像您如何解决问题那么重要。请提供帮助您解决问题的安装命令。你所说的只是你“安装了swig”。请更详细。此外,虽然具体的版本号可能不太重要,但它们并不重要。你可以删除它们。请参阅How to Answer 了解更多信息。

以上是关于Python pocketsphinx RequestError:缺少 PocketSphinx 模块:确保正确设置了 PocketSphinx的主要内容,如果未能解决你的问题,请参考以下文章

pocketsphinx python gstreamer 音频速率

Android下PocketSphinx的离线语音识别

Android下PocketSphinx的离线语音识别

PocketSphinx 安装找不到 swig.exe

PocketSphinx语音识别系统的编译安装和使用

sh 录制立体声,带有arecord的单声道,并使用pocketsphinx读取