Okay, guys, I got it working. Not sure exactly how. However, I have the basic steps:
- re-imaged Raspbian
sudo apt-update
,sudo apt-get upgrade
,sudo apt-get autoremove
- reboot
- install latest versions of nodejs and npm (make sure they are actually up to date with
--version
) - install electron from source (I believe I did this globally
-g
.) - build MagicMirror from source (not using auto-install script)
- create your
config.js
file. - RUN ELECTRON FROM CONSOLE (just type
electron
) cd MagicMirror
- now run
sudo npm install && npm start
.
This worked for me! Hopefully it will work for you guys too.
Edit: This also works without electron
running. I think the issue comes when electron does not install properly?