如何在 raspberry pi 上为 python3 安装 pocketsphinx

How to install pocketsphinx for python3 on a raspberry pi

我正在尝试构建自己的语音助手,但到目前为止 运行 我遇到的唯一问题是安装 pocketsphinx。我需要在 python3 上使用它,但是

sudo pip3 install pocketsphinx

pip3 install --upgrade pocketsphinx

不工作。如果有什么不同的话,我是在树莓派 pi3b+ 上做的。我也试过了

git clone --recursive https://github.com/cmusphinx/pocketsphinx-python/
cd pocketsphinx-python
python setup.py install

但是我得到了这个:

running install
error: can't create or remove files in install directory

The following error occurred while trying to add or remove files in the
installation directory:

    [Errno 13] Permission denied: '/usr/local/lib/python2.7/dist-packages/test-easy-install-1601.write-test'

The installation directory you specified (via --install-dir, --prefix, or
the distutils default setting) was:

    /usr/local/lib/python2.7/dist-packages/

Perhaps your account does not have write access to this directory?  If the
installation directory is a system-owned directory, you may need to sign in
as the administrator or "root" account.  If you do not have administrative
access to this machine, you may wish to choose a different installation
directory, preferably one that is listed in your PYTHONPATH environment
variable.

For information on other options, you may wish to consult the
documentation at:

  https://setuptools.readthedocs.io/en/latest/easy_install.html

Please make the appropriate changes for your system and try again.

如果可以请帮忙

我发现了一些适用于安装的命令:

sudo apt-get install swig libpulse-dev bison libasound2-dev alsa-utils gcc
sudo pip3 install pocketsphinx

希望对遇到同样问题的人有所帮助。