I am trying to install Google Assistant on OSX with Python 3.6.
I successfully ran this command:
python3 -m pip install "google-assistant-sdk[samples]"
But when I run this command with the path to the JSON file from the Google Cloud Platform:
python3 -m googlesamples.assistant.auth_helpers --client-secrets /path-to/secret.json
I get this error:
/usr/local/opt/python3/bin/python3.6: No module named googlesamples.assistant.auth_helpers
Also here's the python3.6/site-packages folder: Terminal Screenshot
Seems that everything is installed but still it doesn't find the module. Anybody can tell why and how to solve it?
Many thanks in advance!