from voice_engine.source import Source ModuleNotFoundError:没有名为“voice_engine”的模块

问题描述 投票:0回答:1

我正在尝试创建一个程序,使用 Raspberry Pi 和 Respeaker 4mic 阵列获取音频到达的方向。

我按照以下链接中的步骤操作,安装成功,如屏幕截图所示。 https://pypi.org/project/voice_engine/

[终端位置截图][1] [1]:https://i.sstatic.net/LmDMS.png



当我运行 Python 程序时,出现错误:
Traceback (most recent call last):<br/>
  File "/home/pi/Desktop/doa.txt", line 9, in <module><br/>
    from voice_engine.source import Source<br/>
ModuleNotFoundError: No module named 'voice_engine

'

import sys
import time
from voice_engine.source import Source
from voice_engine.channel_picker import ChannelPicker
from voice_engine.doa_respeaker_4mic_array import DOA

我正在使用Python 3.7.3 (/usr/bin/python3) (这也是终端的默认设置)

我已经尝试了所有我能想到的方法并用谷歌搜索了错误;然而,没有任何答案有帮助。

python python-3.x raspberry-pi3 raspbian
1个回答
0
投票

也许您缺少 python 库,请使用这些命令来安装它。

pip install voice_engine
© www.soinside.com 2019 - 2024. All rights reserved.