Read the statement by Michael Teeuw here.
MMM Awesome Alexa installing snowboy.
-
@gelaw no it didn’t. still trying to figure somehow to install Snowboy. just the npm install method is not executing properly. I need the help of dev if I could. but looks like he hasn’t touched his post for a while.
-
@Ameyalgudkar did u run my script? you keep going thru the steps even if there are errors…
-
@sdetweil yes I tried, but snowboy not getting installed. here is the errors
if that would be helpful for you to understand what is actually happening. sorry for the file being very long and tiring.
-
install nan wih npm
-
@Ameyalgudkar no you did NOT use my script, OR follow the instructions… the instructions explicitly tell you to install nan
https://awesome-alexa.js.org/#/installation
my script, which is same as the instructions for this module, plus the step to add the one dependency
over and over we asked if u followed the instructions… but u have not…#!/bin/bash cd ~/MagicMirror/modules # Navigate to module folder if [ ! -e ~/MagicMirror/modules/MMM-awesome-alexa ]; then git clone https://github.com/dolanmiu/MMM-awesome-alexa.git # Clone this repository fi cd MMM-awesome-alexa # go into the module directory v=$(apt -qq list libatlas-base-dev 2>/dev/null) if [ "$v". == "." ]; then sudo apt-get install libatlas-base-dev fi npm install --only=prod # Install depdendencies cd node_modules rm -rf snowboy # Remove the installed snowboy git clone https://github.com/Kitt-AI/snowboy.git # Manually get snowboy from git cd snowboy # Go into the /snowboy directory rm -rf node_modules npm install nan --save # Make sure you install this in the /snowboy directory /< -------------------------------------------- npm install node-pre-gyp@0.12.0 --save # Make sure you install this in the /snowboy directory npm install # Make sure you install in the /snowboy directory npm run prepublish # Make sure you run this in the /snowboy directory npm install --save-dev electron-rebuild # Make sure you install this in the /snowboy directory npm install nan # Make sure you install this in the /snowboy directory ./node_modules/.bin/electron-rebuild # Build snowboy to your device specifications, in the /snowboy directory
-
@sdetweil now I really dont know what else I have to follow, you can see each and every step I did, I literally copy pasted all the commands as they are. in the same order and directories, I havent included the first few steps mentioned as they get executed every time. I have posted every step which has got errors.
-
@Ameyalgudkar ignore the errors and keep going… it WILL FAIL til the last step…
which is why I offered the script to do it for you
-
@sdetweil how should I run the script? I tried the bash c but that didnt worked so did everything from script manually.
I will run the script exactly as you say and then will show you result if thats ok. also please let me know in which directory should I run the script. -
@Ameyalgudkar
cut and paste this line into a terminal windowbash -c "$(curl -sL https://www.dropbox.com/s/omrx3vztjp738hf/do-install.sh?dl=0)"
-
@Ameyalgudkar said in MMM Awesome Alexa installing snowboy.:
I tried the bash c
looks like you forgot the - in front of c
bash -c do-install.sh
and didn’t mark it executable
chmod +x do-install.sh(if u already downloaded the file)