MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. lvolkjr
    3. Posts
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    L
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 18
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: MM Windows 11 install - 3rd party modules won't work

      @sdetweil Thank you for all your help, I’ll be sure to use the Code Block in the future.

      I’ll have to go back to the default weather module, as the firewall I’m behind won’t let me use the OpenWeathermap api. It took me a while to figure out, but I found out what the issue was.

      Thanks again, Sam!

      posted in Troubleshooting
      L
      lvolkjr
    • RE: MM Windows 11 install - 3rd party modules won't work

      @KristjanESPERANTO

      {
      				module: "MMM-OneCallWeather",
      				position: "top_right",
      				header: "Weather in San Ramon",
      				config: {
      				  latitude: "37.76470886457069",  // Longitude from https://www.latlong.net/
      				  longitude: "-121.9619230575287", // Longitude from https://www.latlong.net/
      				  apikey: "*mysecretkey*", // openweathermap.org API key
      				  iconset: "4a",          // Icon set to use.
      				  iconsetFormat: "png",   // File format of the icons.
      				}
      		},
      

      I just copied what you had on the example and then plugged in my information. I tried apiKey, because I was using apikey from the beginning, but still get the same error.

      posted in Troubleshooting
      L
      lvolkjr
    • RE: MM Windows 11 install - 3rd party modules won't work

      Update:
      I found an error in the log:
      [2025-05-27 19:59:04.742] [ERROR] [MMM-OneCallWeather] Error: Unauthorized
      I’m not sure why I’m getting this, I triple check my API key and it’s correct. I hope that helps someone to help me resolve this.

      Thank you for any help you can give me!

      posted in Troubleshooting
      L
      lvolkjr
    • MM Windows 11 install - 3rd party modules won't work

      Hi there,
      I installed MagicMirror on a Windows 11 laptop device to see if a small Windows device would work. I followed the installation directions from the MM documentation. Everything worked right away except the Calendar default module, I wasn’t worried about it at the moment.

      I started to install KristjanESPERANTO/MMM-OneCallWeather. Got my API key set the basic settings and it just says it’s loading, but nothing happens. I get one error and it says it’s unauthorized. I go and try it on a Raspberry Pi and it works great.

      I’m trying to figure out if there is something i missed with the Windows install. I did the Node.js install, the Git install, and went to the Vendor and Fonts directories and did the npm install also.

      When I did this “Install the application: npm run install-mm” it didn’t work. I took off the -mm and that worked. Is that the issue? Thanks for any help you can give me with this.

      posted in Troubleshooting
      L
      lvolkjr
    • RE: Can't update module because of unmerged files

      @sdetweil Thanks, that worked. Now MMM-OpenWeatherMapForecast just sits there and shows it’s Loading… Oh yeah, got to go and upgrade to the 3.0 API

      posted in Troubleshooting
      L
      lvolkjr
    • Can't update module because of unmerged files

      I’m trying to update the MMM-OpenWeatherMapForecast module and I get this message after trying to use the command git pull: “error: Pulling is not possible because you have unmerged files.” I’m not sure how to proceed to resolve this issue.

      posted in Troubleshooting
      L
      lvolkjr
    • RE: MyScoreboard won't show scores

      @sdetweil Thank you!

      posted in Troubleshooting
      L
      lvolkjr
    • MyScoreboard won't show scores

      I’m not sure when it happened, the scores stopped showing on my MM. The only thing that shows up are the teams and the times when the game starts, never show a score. I’m not sure how to solve this. It doesn’t look like there is an update. Can someone help me with this? Thanks in advance.

      posted in Troubleshooting
      L
      lvolkjr
    • RE: Error trying to run: npm run install-mm

      @sdetweil I will, thanks again.

      posted in Troubleshooting
      L
      lvolkjr
    • RE: Error trying to run: npm run install-mm

      @sdetweil Thanks!!! That worked! I’m running MagicMirror and getting ready to customize it. I should have started over a long time ago.

      posted in Troubleshooting
      L
      lvolkjr
    • RE: Error trying to run: npm run install-mm

      @sdetweil Yea, I figured. Thanks for all your help. Hopefully I could repay you in the future. I’ll keep you updated to what happens.

      posted in Troubleshooting
      L
      lvolkjr
    • RE: Error trying to run: npm run install-mm

      @sdetweil This is what I got:
      lowell@raspberrypi:~ $ ls /usr/bin/node
      ls: cannot access ‘/usr/bin/node’: No such file or directory
      lowell@raspberrypi:~ $ hash -r
      lowell@raspberrypi:~ $ node -v
      bash: node: command not found

      Do you still want me to run your script? I feel like node -v should have given me a different output, like the version number.

      posted in Troubleshooting
      L
      lvolkjr
    • RE: Error trying to run: npm run install-mm

      @sdetweil I didn’t see any errors after running sudo apt-get remove nodejs -y
      When I run node -v I get this:
      bash: /usr/bin/node: No such file or directory

      posted in Troubleshooting
      L
      lvolkjr
    • RE: Error trying to run: npm run install-mm

      @sdetweil I was looking for a solution prior to coming to this forum and following someone else’s answer to there own issue that I thought would work for me, but got me no where. they said to change to node 18 from here: https://github.com/nodesource/distributions

      Download and import the Nodesource GPG key
      

      sudo apt-get update
      sudo apt-get install -y ca-certificates curl gnupg
      sudo mkdir -p /etc/apt/keyrings
      curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg

      Create deb repository
      

      NODE_MAJOR=20
      echo “deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main” | sudo tee /etc/apt/sources.list.d/nodesource.list

      Optional: NODE_MAJOR can be changed depending on the version you need.

      NODE_MAJOR=16
      NODE_MAJOR=18
      NODE_MAJOR=20
      NODE_MAJOR=21

      Run Update and Install
      

      sudo apt-get update
      sudo apt-get install nodejs -y

      Did this screw me up?

      posted in Troubleshooting
      L
      lvolkjr
    • RE: Error trying to run: npm run install-mm

      @sdetweil
      lowell@raspberrypi:~/MagicMirror $ which node
      /usr/bin/node
      lowell@raspberrypi:~/MagicMirror $ n ls
      bash: n: command not found

      posted in Troubleshooting
      L
      lvolkjr
    • RE: Error trying to run: npm run install-mm

      @sdetweil My bad I said Buster earlier, It’s Bullseye. I went back a version because I needed VNC server to work.

      lowell@raspberrypi:~/MagicMirror $ ls /usr/bin/node -laF
      -rwxr-xr-x 1 root root 80547788 Oct 13 07:03 /usr/bin/node*
      lowell@raspberrypi:~/MagicMirror $ node -v
      v18.18.2
      lowell@raspberrypi:~/MagicMirror $ uname -a
      Linux raspberrypi 6.1.21-v8+ #1642 SMP PREEMPT Mon Apr 3 17:24:16 BST 2023 aarch64 GNU/Linux
      lowell@raspberrypi:~/MagicMirror $ lsb_release -a
      No LSB modules are available.
      Distributor ID: Raspbian
      Description: Raspbian GNU/Linux 11 (bullseye)
      Release: 11
      Codename: bullseye
      lowell@raspberrypi:~/MagicMirror $ file /bin/bash
      /bin/bash: ELF 32-bit LSB executable, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=f12e6d40fb262ad0037b6ec43162208b76d4da71, for GNU/Linux 3.2.0, stripped

      posted in Troubleshooting
      L
      lvolkjr
    • RE: Error trying to run: npm run install-mm

      @sdetweil I ran node -v and got the following:
      bash: /usr/bin/node: No such file or directory

      Then I ran your install script and got this:
      install log being saved to /home/lowell/install.log
      Updating packages …
      [ <=> ]
      Installing helper tools …
      installing correct version of node and npm, please wait
      sudo: n: command not found
      node failed to install, exiting

      posted in Troubleshooting
      L
      lvolkjr
    • Error trying to run: npm run install-mm

      I’m trying to install MagicMirror on my Pi 4 - Buster and when I put in npm run install-mm while I’m in the MagicMirror folder I get the following:

      evalmachine.:36
      } = primordials;
      ^

      ReferenceError: primordials is not defined
      at evalmachine.:36:5
      at Object. (/usr/local/lib/node_modules/npm/node_modules/graceful-fs/fs.js:11:8)
      at Module._compile (internal/modules/cjs/loader.js:999:30)
      at Object.Module._extensions…js (internal/modules/cjs/loader.js:1027:10)
      at Module.load (internal/modules/cjs/loader.js:863:32)
      at Function.Module._load (internal/modules/cjs/loader.js:708:14)
      at Module.require (internal/modules/cjs/loader.js:887:19)
      at require (internal/modules/cjs/helpers.js:74:18)
      at Object. (/usr/local/lib/node_modules/npm/node_modules/graceful-fs/graceful-fs.js:3:27)
      at Module._compile (internal/modules/cjs/loader.js:999:30)

      How do I resolve this issue? I’m new to this.

      posted in Troubleshooting
      L
      lvolkjr
    • 1 / 1