首页 > 解决方案 > 谷歌助手树莓派问题 | 启动指令不起作用

问题描述

我是 raspberry 和 python 的新手,我已经使用本教程https://pimylifeup.com/raspberry-pi-google-assistant/在我的 Raspberry Pi 4 B 上使用 Raspbian 安装了 Google Assistant。

这工作正常:

googlesamples-assistant-pushtotalk 

测试它,我收到以下错误:

(env) pi@raspberrypi:~ $ google-assistant-demo --project-id XXX
Traceback (most recent call last):
  File "/home/pi/env/bin/google-assistant-demo", line 8, in <module>
    sys.exit(main())
  File "/home/pi/env/lib/python3.7/site-packages/google/assistant/library/__main__.py", line 119, in main
    raise Exception('Missing --device-model-id option')
Exception: Missing --device-model-id option

同时运行“ googlesamples-assistant-hotword”只会给我一个内存访问错误。

我试图让它在启动时免提工作,所以我使用sudo systemctl status assistant.service了它给了我:

● assistant.service - Google Assistant
   Loaded: loaded (/lib/systemd/system/assistant.service; enabled; vendor preset
   Active: failed (Result: exit-code) since Sun 2019-12-29 20:11:46 CET; 2s ago
  Process: 10343 ExecStart=/bin/bash /home/pi/start_assistant.sh (code=exited, s
 Main PID: 10343 (code=exited, status=139)

Dez 29 20:11:45 raspberrypi systemd[1]: Started Google Assistant.
Dez 29 20:11:46 raspberrypi bash[10343]: /home/pi/start_assistant.sh: Zeile 4: 1
Dez 29 20:11:46 raspberrypi systemd[1]: assistant.service: Main process exited, 
Dez 29 20:11:46 raspberrypi systemd[1]: assistant.service: Failed with result 'e
lines 1-10/10 (END)

我认为这些错误可能是相关的。

非常感谢您提前。

标签: raspberry-piraspbiangoogle-assistant-sdk

解决方案


您需要按照官方文档创建设备型号 ID,然后在运行项目时传递该参数。


推荐阅读