Home:ALL Converter>Setting up google assistant on windows PC

Setting up google assistant on windows PC

Ask Time:2018-07-23T01:17:24         Author:Sundeep Srinivasan

Json Formatter

I followed instructions in the below link to set up google assistant in my Windows PC.

https://developers.google.com/assistant/sdk/guides/library/python/

But in the step while running the hotword command, i am getting the below error :

Traceback (most recent call last):
  File "c:\users\310211247\appdata\local\continuum\miniconda3\lib\runpy.py",line 193, in 
_run_module_as_main
    "__main__", mod_spec)
  File "c:\users\310211247\appdata\local\continuum\miniconda3\lib\runpy.py", line 85, in _run_code
    exec(code, run_globals)
  File "C:\Users\310211247\AppData\Local\Continuum\miniconda3\Scripts\googlesamples-assistant-hotword.exe\__main__.py", line 5, in <module>
  File "c:\users\310211247\appdata\local\continuum\miniconda3\lib\site-packages\googlesamples\assistant\library\hotword.py", line 27, in <module> from google.assistant.library import Assistant
ModuleNotFoundError: No module named 'google.assistant.library'

How can i resolve this error?

Author:Sundeep Srinivasan,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/51467503/setting-up-google-assistant-on-windows-pc
Nick Felker :

As noted in the Compatibility section for the library, it is only supported on linux-armv7l and linux-x86_64 architectures. The library is not expected to work on a Windows device. Instead, you should look at using the service API.",
2018-07-23T20:32:29
yy