Problem:
I installed Googlesamples-assistant-pushtotalk(Google Assistant Service) in Pi Zero recently , but it displays "Illegal instruction" error message and I can't execute it.

This messages didn't appear when I installed before(3/25/2018).
Environment:
Raspberry Pi Zero W
RASPBIAN STRETCH WITH DESKTOP (2018-03-13)
procedure:
I executed official installation procedure.
https://developers.google.com/assistant/sdk/guides/service/python/embed/install-sample
cause:
I think that it is caused by grpcio pip package .
I found grpcio package installation with "grpcio-1.11.0-cp35-cp35m-linux_armv6l.whl" from log of installation Google Assistant. This file name looks like to compliant armv6 architecture, but "Illegal Instruction" error was occurred.
So, I tried to install grpcio from source before Google Assistant installation.
python -m pip install --upgrade --no-binary :all: grpcio
python -m pip install --upgrade google-assistant-library
python -m pip install --upgrade google-assistant-sdk[samples]
python -m pip install --upgrade google-auth-oauthlib[tool]
...
Then, "Illegal instruction" error was not occurred and I can use pushtotalk well.
In Pi Zero, latest version of grpcio(1.11.0) is installed from binary package. but previous version(1.10.0) is installed from source.
I think this is why "Illegal Instruction" is occurred recently.
Request:
Would you check this problem please?
If I should send this issue gRPC team, please tell me. And I will do so.
Thank you for taking your time.
Problem:
I installed Googlesamples-assistant-pushtotalk(Google Assistant Service) in Pi Zero recently , but it displays "Illegal instruction" error message and I can't execute it.
This messages didn't appear when I installed before(3/25/2018).
Environment:
Raspberry Pi Zero W
RASPBIAN STRETCH WITH DESKTOP (2018-03-13)
procedure:
I executed official installation procedure.
https://developers.google.com/assistant/sdk/guides/service/python/embed/install-sample
cause:
I think that it is caused by grpcio pip package .
I found grpcio package installation with "grpcio-1.11.0-cp35-cp35m-linux_armv6l.whl" from log of installation Google Assistant. This file name looks like to compliant armv6 architecture, but "Illegal Instruction" error was occurred.
So, I tried to install grpcio from source before Google Assistant installation.
...
Then, "Illegal instruction" error was not occurred and I can use pushtotalk well.
In Pi Zero, latest version of grpcio(1.11.0) is installed from binary package. but previous version(1.10.0) is installed from source.
I think this is why "Illegal Instruction" is occurred recently.
Request:
Would you check this problem please?
If I should send this issue gRPC team, please tell me. And I will do so.
Thank you for taking your time.