Magic Mirror2 From the Scratch (software and Hardware)

Опубликовано: 02 Ноябрь 2024
на канале: Nepal Tech Hub
1,076
31

In this video, we will go through the Software Installation for the MagicMirror
Step-to-step process of module creation and crontab -e.

MagicMirror2 Documentation == https://docs.magicmirror.builders/get...

Steps and Software requirements
=========================================================

1. Install the Rasbian OS in RPR (boot)

2. Setup make sure everything is working normally in RPI.

3. Open the terminal or use putty. (i am using putty)

// This is to download and install the latest version of Node.js//
4. curl -sL https://deb.nodesource.com/setup_10.x | Sudo -E bash -
5.sudo apt install -y nodejs

// Clone the Repository and check out the master branch//
6. git clone https://github.com/MichMich/MagicMirror

// Now once you clone the repository, we can enter to the MagicMirror Dir..//

7. cd MagicMirror/

// Now next step is to install the npm application, this will help to run your shell script //

8. npm install (inside the magic mirror directory)

// To stay on the safe side we will create a copy of the config-sample file //
9. cp config/config.js.sample config/config.js

Start the application //
10. npm run start