Fresh install RPI4 fails to start edge-impulse-linux inside Docker

Question/Issue:
This is my first project and I have followed this tutorial: Raspberry Pi 4 | Documentation

Everything works fine until:

"and

/lib/systemd/systemd-udevd --daemon

You should now be able to run Edge Impulse CLI tools from the container running on your Raspberry."

But I get this error:
root@RPI4EdgeImpuls:/# /lib/systemd/systemd-udevd --daemon
bash: /lib/systemd/systemd-udevd: No such file or directory

And then:
root@RPI4EdgeImpuls:/# edge-impulse-linux
bash: edge-impulse-linux: command not found

I have to add that install the: running Docker as non-root user.

What am I doing wrong?

Hi @pederhomelab

Let me try to follow, what user are you using for Docker root? Its better to use pi or a docker user.

Can you past the results of:

  • docker --version
  • sudo systemctl status docker
  • groups $USER

If you dont see docker in your users group add it with

  • sudo usermod -aG docker $USER

Also did you install the Edge Impulse linux sdk?

  • npm install -g edge-impulse-linux

Best

Eoin