我正在尝试让Python 3.4在Linux(Ubuntu 14.04 OS)计算机上使用PocketSphinx。昨天,我成功安装了sphinxbase-5prealpha
和pocketsphinx-5prealpha
。我通过成功运行pocketsphinx_continuous -inmic yes
我试图继续使用Python API但无法在我的目录中的任何位置找到python模块(sphinxbase
和pocketsphinx
)。我搜索了网页,但只能找到与Windows安装相关的安装/创建pocketsphinx
文件的参考。
如何在Linux安装中创建模块sphinxbase
和pocketsphinx
?他们应该在哪里与../MySphinxDirectory
生活在一起?
答案 0 :(得分:2)
您可以通过pip安装pocketsphinx
和sphinxbase
的python模块。
运行:
sudo pip install pocketsphinx
sphinxbase
模块是pocketsphinx
的要求,因此在您安装pocketsphinx
软件包时会自动安装。
然后在你的python程序中,你应该能够使用以下方法从中导入模块:
from pocketsphinx.pocketsphinx import ...
from sphinxbase.sphinxbase import ...
pocketsphinx repository包含an example you can test with,如果您还没有。{/ p>