You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 13, 2026. It is now read-only.
I followed the setup instructions step by step on my Raspberry Pi and completed all the steps, except make run_assistant failing after a while with error:
In file included from src/assistant/json_util.cc:20:
./grpc/src/core/lib/json/json.h:30:10: fatal error: absl/strings/string_view.h: No such file or directory
#include "absl/strings/string_view.h"
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make: *** [<builtin>: src/assistant/json_util.o] Error 1
I see the missing abseil library is in the path ${GRPC_PATH}/third_party/abseil-cpp but makefile doesn't seem to find it? If I add line -I$(GRPC_SRC_PATH)/third_party/abseil-cpp to CPPFLAGS of the Makefile, I get declaration conflicts when trying to compile.