Skip to content Skip to sidebar Skip to footer

Google Assistant Installation On Python3.6 Osx

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 comman

Solution 1:

The new version of the package use a different tool for negotiating the credentials.

python -m pip install --upgrade google-auth-oauthlib[tool]
google-oauthlib-tool --client-secrets /home/pi/client_secret_client-id.json--scope https://www.googleapis.com/auth/assistant-sdk-prototype --save --headless

See the updated documentation for the package on the PyPi page.

Post a Comment for "Google Assistant Installation On Python3.6 Osx"