ModuleNotFoundError: No module named 'edge_impulse_linux

Hi,

I’m working on a raspberry pi and using the python examples. I’m following all the steps and installed all the dependences. I’m using the keyword spotting (KWS)model, wich invokes a classification model. Both codes work find, however, when KWS calls the classification mode using the line below

os.system(’/home/pi/linux-sdk-python3/examples/audio/classify3.py model2.eim’)

I get the following

File “/home/pi/linux-sdk-python3/examples/audio/classify3.py”, line 11, in
from edge_impulse_linux.audio import AudioImpulseRunner
ModuleNotFoundError: No module named 'edge_impulse_linux

Hello @Aisha,

Did you installed edge_impulse_linux python package?

You can do something like the following on the Raspberry Pi

pip3 install edge_impulse_linux -i https://pypi.python.org/simple

Regards,

Louis