@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
Read the statement by Michael Teeuw here.
Latest posts made by lvolkjr
-
RE: Can't update module because of unmerged files
-
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.
-
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.
-
RE: Error trying to run: npm run install-mm
@sdetweil I will, thanks again.
-
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.
-
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.
-
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 foundDo you still want me to run your script? I feel like node -v should have given me a different output, like the version number.
-
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 -
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.gpgCreate 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.listOptional: NODE_MAJOR can be changed depending on the version you need.
NODE_MAJOR=16
NODE_MAJOR=18
NODE_MAJOR=20
NODE_MAJOR=21Run Update and Install
sudo apt-get update
sudo apt-get install nodejs -yDid this screw me up?