[Plugin Tiers] Google Home Local - Encodage ASCII UTF-8

Bonjour,

J’ai installé le plug-in Google Devices et je rencontre le problème suivant. A l’exécution de la commande « jouer une phrase TTS », j’ai l’erreur suivante :

Traceback (most recent call last):
File « /usr/local/bin/gtts-cli », line 8, in
sys.exit(tts_cli())
File « /usr/local/lib/python3.5/dist-packages/click-7.1.2-py3.5.egg/click/core.py », line 829, in call
return self.main(*args, **kwargs)
File « /usr/local/lib/python3.5/dist-packages/click-7.1.2-py3.5.egg/click/core.py », line 760, in main
_verify_python3_env()
File « /usr/local/lib/python3.5/dist-packages/click-7.1.2-py3.5.egg/click/_unicodefun.py », line 130, in _verify_python3_env
" mitigation steps.{}".format(extra)
RuntimeError: Click will abort further execution because Python 3 was configured to use ASCII as encoding for the environment. Consult https://click.palletsprojects.com/python3/ for mitigation steps.

This system supports the C.UTF-8 locale which is recommended. You might be able to resolve your issue by exporting the following environment variables:

export LC_ALL=C.UTF-8
export LANG=C.UTF-8

Mes locales sont les suivantes
LANG=C.UTF-8
LANGUAGE=
LC_CTYPE=« C.UTF-8 »
LC_NUMERIC=« C.UTF-8 »
LC_TIME=« C.UTF-8 »
LC_COLLATE=« C.UTF-8 »
LC_MONETARY=« C.UTF-8 »
LC_MESSAGES=« C.UTF-8 »
LC_PAPER=« C.UTF-8 »
LC_NAME=« C.UTF-8 »
LC_ADDRESS=« C.UTF-8 »
LC_TELEPHONE=« C.UTF-8 »
LC_MEASUREMENT=« C.UTF-8 »
LC_IDENTIFICATION=« C.UTF-8 »
LC_ALL=C.UTF-8

Si je lance le script en ligne de commande, la commande « codecs.lookup(locale.getpreferredencoding()).name » (ajoutée au scipt gtts-cli ) renvoie bien « utf-8 ».
En revanche, cette même commande appelée depuis jeedom par le plug-in renvoie « ascii ».

une idée ?