ha-alexa-tts
ha-alexa-tts copied to clipboard
jq not found
I had this issue earlier. I don't know how to send a message to the owner I'm using hassbian for home assistant and I was getting this error jq not found when I was trying to run alexa_remote_control.sh I have sorted the issue out with sudo apt-get install jq Hope it helps!
Thank you! Had the same issue, and also using hassbian. Hopefully the developer takes note
Just a note for anyone getting a jq not found error - I had to install jq 1.5 separately (1.6 did not work on my setup) with the following commands:
cd /tmp
wget https://github.com/stedolan/jq/releases/download/jq-1.5/jq-1.5.tar.gz
tar xfvz jq-1.5.tar.gz
cd jq-1.5
./configure && make && sudo make install
@sfgabe I can confirm that your fix worked for me!
Note, I am trying to use ha-alexa-tts
using Home Assistant's official Docker image.
Thanks a lot , it helps me too to use it with HA Docker image just a comment, if you are root user, you don't need sudo make install , just make install Anyway Thank you so much
Big thanks to @sfgabe , works for me too !!!