0

Both an existing raspberry pi 3 assistant-sdk setup and a freshly created one are producing identical errors at all times idle or otherwise. The lines below are repeating over and do not seem to be affected by the state of the assistant. Replicates across multiple developer accounts, devices and projects. Present with both the stock hotword example and modified scripts that worked previously. All cases are library assistant and python 3 on raspberry pi 3 model B running raspbian stretch.

[9780:9796:ERROR:assistant_ssdp_client.cc(210)] Failed to parse header: LOCATION: about:blank

[9780:9796:ERROR:assistant_ssdp_client.cc(76)] LOCATION header doesn't contain a valid url

kudlatiger
  • 3,028
  • 8
  • 48
  • 98

1 Answers1

1

This fixed it for me: pip3 install google-assistant-library==0.1.0

  • If I install google-assistant-library==0.1.0, I get the following error: Testing the installed google assistant. Make a note of the generated Device-Id Traceback (most recent call last): File "/home/pi/env/bin/googlesamples-assistant-hotword", line 11, in sys.exit(main()) File "/home/pi/env/lib/python3.5/site-packages/googlesamples/assistant/library/hotword.py", line 128, in main Assistant.__version_str__()) AttributeError: type object 'Assistant' has no attribute '__version_str__' – Vikas Apr 16 '18 at 13:00