Read the statement by Michael Teeuw here.
Rpi 3B+, can't install
-
Would you please type correct commands? I’m not too good with commandline.
I usedmv MagicMirror MagicMirror2 bash -c "$(curl -sL https://raw.githubusercontent.com/MichMich/MagicMirror/master/installers/raspberry.sh)"
I see an error
-
so I did
mv MagicMirror MagicMirror3 git clone https://github.com/MichMich/MagicMirror npm start
and I see
Segmentation fault
-
Try
git clone https://github.com/MichMich/MagicMirror
thencd MagicMirror
followed bynpm install
.
Looks to me you tried to start the MagicMirror before installing it. -
Segmentation fault
-
I have set up WAN Port Forwarding to RPi, if there is somebody willing to help me.
-
@epi
I got the same issue and I installed manually.- install the latest Node.js version.
-
Updates Debian apt package repository to include the NodeSource packages.
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash - -
install Node.js
sudo apt install -y nodejs -
Check your node version ( should be V 10.10.0)
node -v
- Clone the repository and check out the master branch: git clone https://github.com/MichMich/MagicMirror
- Enter the repository: cd MagicMirror/
- Install and run the app with: npm install && npm start
- create a working config.
-
-
Still doesn’t work for me.
What I did is- Install fresh RASPBIAN STRETCH WITH DESKTOP
- After install, configure wifi credentials and enable SSH access
- Connect via SSH and proceed with
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
sudo apt install -y nodejs
node -v
(got answer “v10.10.0”)
git clone https://github.com/MichMich/MagicMirror
cd MagicMirror/
npm install && npm start
-
any clue what to do next?
-
Not sure this will help but you could try
npm install -g electron
within your MagicMirror directory.If that doesn’t work, try
npm install electron@2.0.0
inside your MM directory.