Raspberry Pi 3:Google Assistant细分错误

时间:2019-01-19 09:45:06

标签: raspberry-pi3 google-assistant-sdk

我按照https://developers.google.com/assistant/sdk/guides/library/python/embed/setup上的说明在Raspberry Pi 3上设置了Google Assisstant。不幸的是,使用hotword命令给我带来了分段错误:

   'collectors' => [
        'phpinfo'         => true,  // Php version
        'messages'        => true,  // Messages
        'time'            => true,  // Time Datalogger
        'memory'          => true,  // Memory usage
        'exceptions'      => true,  // Exception displayer
        'log'             => true,  // Logs from Monolog (merged in messages if enabled)
        'db'              => true,  // Show database (PDO) queries and bindings
        'views'           => true,  // Views with their data
        'route'           => true,  // Current route information
        'auth'            => true, // Display Laravel authentication status
        'gate'            => true, // Display Laravel Gate checks
        'session'         => true,  // Display session data
        'symfony_request' => true,  // Only one can be enabled..
        'mail'            => true,  // Catch mail messages
        'laravel'         => false, // Laravel version and environment
        'events'          => false, // All events fired
        'default_request' => false, // Regular or special Symfony request logger
        'logs'            => false, // Add the latest log messages
        'files'           => false, // Show the included files
        'config'          => false, // Display config settings
        'cache'           => false, // Display cache events
    ], ```

到目前为止我尝试过的事情:

我注意到的是,电话上的Google助手应用也显示我有0个本地设备。

1 个答案:

答案 0 :(得分:1)

我遇到了与您完全相同的问题。我通过在环境中运行库,将库升级到 v1.0.1 来解决了该问题

python -m pip install --upgrade google-assistant-library==1.0.1

基于this issueGitHub上针对Assistant SDK的讲话。