Read the statement by Michael Teeuw here.
how to update my MM
-
@mumblebaj oh… no… don’t want to get into that
they are two distinct functions… users have to learn sometime
-
@sdetweil :-) I understand. But it would make your life easier with running the wrong script, messing up their install and you having to go through a 100 different things for them to do to get it fixed… :-)
-
@mumblebaj they can’t mess up their install …
install aborted as already present
upgrade won’t change anything unless you ask for it.
and it won’t try to upgrade to the same version, unless you report it and I tell you how to get around it.
(I am constantly finding things that users don’t understand, and trying to make life easier as best I can)this particular problem is unrelated to the scripts…
it was caused by a networking problem I can’t fix.
and I don’t know if all this will work . -
I do this for the first modul :
pi@raspberrypi:~ $ cd ~/MagicMirror/modules/MMM-DHT-Sensor pi@raspberrypi:~/MagicMirror/modules/MMM-DHT-Sensor $ ls package.json package.json pi@raspberrypi:~/MagicMirror/modules/MMM-DHT-Sensor $
i do this :
npm init -y
? -
@rikko14 no. the file exists.
only do npm init -y if the file does NOT exist
-
@sdetweil as you told me, I do
cd ~/MagicMirror/modules/modulename
for each module.
I found an error in the last module : MMM-WeatherOrNot, a module that I no longer use so I deleted it with the command :cd ~ / MagicMirror
andrm -rf modules / MMM-WeatherOrNot
then i redid pm2 save and pm2 start 0 and turned the MM off and on again with ~ 1 minute but I still have a black screen and an electron problem.
what to do ?
-
@rikko14 Can you run the following command and post the output please?
grep -r -E '('request')' ~/MagicMirror/modules/*/*.js
Or post the pm2 logs again? There must be a module that is missing a module as per what Sam advised previously. Let us see if we can find the module that is broken.
-
pi@raspberrypi:~ $ grep -r -E '('request')' ~/MagicMirror/modules/*/*.js /home/pi/MagicMirror/modules/MMM-Jast/node_helper.js:(()=>{"use strict";var e={944:function(e,t,o){var r=this&&this.__awaiter||function(e,t,o,r){return new(o||(o=Promise))((function(n,i){function s(e){try{c(r.next(e))}catch(e){i(e)}}function a(e){try{c(r.throw(e))}catch(e){i(e)}}function c(e){var t;e.done?n(e.value):(t=e.value,t instanceof o?t:new o((function(e){e(t)}))).then(s,a)}c((r=r.apply(e,t||[])).next())}))};Object.defineProperty(t,"__esModule",{value:!0});const n=o(543),i=o(61);e.exports=n.create({start(){console.log(`${this.name} helper method started...`)},requestStocks(e){return r(this,void 0,void 0,(function*(){let t=[];for(const o of e.stocks)try{const{summaryDetail:e,price:r}=yield i.default.quoteSummary(o.symbol);if(e&&r){const n={symbol:o.symbol,name:o.name,quantity:o.quantity};t.push({summaryDetail:e,price:r,meta:n})}}catch(e){console.error("There was an error requesting the API.",e.message)}return t}))},socketNotificationReceived(e,t){return r(this,void 0,void 0,(function*(){if(e){const e=yield this.requestStocks(t);this.sendSocketNotification("STOCKS_RESULT",e)}else console.warn(`${e} is invalid notification`)}))}})},543:e=>{e.exports=require("node_helper")},61:e=>{e.exports=require("yahoo-finance2")}},t={},o=function o(r){var n=t[r];if(void 0!==n)return n.exports;var i=t[r]={exports:{}};return e[r].call(i.exports,i,i.exports,o),i.exports}(944);module.exports=o})(); /home/pi/MagicMirror/modules/MMM-MovieListings/node_helper.js:var request = require('request'); /home/pi/MagicMirror/modules/MMM-MovieListings/node_helper.js: request( /home/pi/MagicMirror/modules/MMM-MovieListings/node_helper.js: request( /home/pi/MagicMirror/modules/MMM-MovieListings/node_helper.js: request( /home/pi/MagicMirror/modules/MMM-soccer/MMM-soccer.js: * @description Adds nunjuck filters and requests for league data. /home/pi/MagicMirror/modules/MMM-soccer/MMM-soccer.js: * @description Sends request to the node_helper to fetch data for the current selected league. /home/pi/MagicMirror/modules/MMM-soccer/node_helper.js: * @external request /home/pi/MagicMirror/modules/MMM-soccer/node_helper.js: * @see https://www.npmjs.com/package/request /home/pi/MagicMirror/modules/MMM-soccer/node_helper.js:const request = require('request'); /home/pi/MagicMirror/modules/MMM-soccer/node_helper.js: * @requires external:request /home/pi/MagicMirror/modules/MMM-soccer/node_helper.js: * @param {Object} options - request optionsthe notification. /home/pi/MagicMirror/modules/MMM-soccer/node_helper.js: request(options, (error, response, body) => { /home/pi/MagicMirror/modules/MMM-TomTomTraffic/MMM-TomTomTraffic.js: // Instead, on the first dom request, add a <script> tag and trigger a dom refresh pi@raspberrypi:~ $
I do not remember anymore how to post the pm2 logs
-
@rikko14 So now you now that 2 modules require the module request. Please run the following scripts so we can determine which modules do not have request installed and post the output.
find ~/MagicMirror/modules/* -type d -name request
-
pi@raspberrypi:~ $ find ~/MagicMirror/modules/* -type d -name request /home/pi/MagicMirror/modules/MMM-MovieListings/node_modules/request /home/pi/MagicMirror/modules/MMM-NowPlayingOnSpotify/node_modules/request /home/pi/MagicMirror/modules/MMM-NowPlayingOnSpotify/node_modules/npm/node_modules/request pi@raspberrypi:~ $