• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

Default Weather module still not displaying

Scheduled Pinned Locked Moved Solved Troubleshooting
39 Posts 6 Posters 11.5k Views 6 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B Offline
    Blackeye @sdetweil
    last edited by Aug 6, 2022, 3:58 PM

    @sdetweil Hi Sam, Many thanks for the suggestion - I followed your advice on that page. Here’s what happened halfway through:

    from ../src/epoll.cc:11:
    /home/<myusername>/MagicMirror/modules/MMM-PIR-Sensor/node_modules/epoll/20.0.1/include/node/v8-ma                                     ybe.h:106:45: error: ‘is_lvalue_reference_v’ is not a member of ‘std’; did you mean ‘is_lvalue_                                     reference’?
      106 |   template <class U, std::enable_if_t<!std::is_lvalue_reference_v<U>>*>
          |                                             ^~~~~~~~~~~~~~~~~~~~~
          |                                             is_lvalue_reference
    /home/<myusername>/MagicMirror/modules/MMM-PIR-Sensor/node_modules/epoll/20.0.1/include/node/v8-ma                                     ybe.h:106:66: warning: logical not is only applied to the left hand side of comparison [-Wlogic                                     al-not-parentheses]
      106 |   template <class U, std::enable_if_t<!std::is_lvalue_reference_v<U>>*>
          |                                                                  ^
    /home/<myusername>/MagicMirror/modules/MMM-PIR-Sensor/node_modules/epoll/20.0.1/include/node/v8-ma                                     ybe.h:106:67: error: template argument 1 is invalid
      106 |   template <class U, std::enable_if_t<!std::is_lvalue_reference_v<U>>*>
          |                                                                   ^
    /home/<myusername>/MagicMirror/modules/MMM-PIR-Sensor/node_modules/epoll/20.0.1/include/node/v8-ma                                     ybe.h:106:71: error: expected unqualified-id before ‘>’ token
      106 |   template <class U, std::enable_if_t<!std::is_lvalue_reference_v<U>>*>
          |                                                                       ^
    /home/<myusername>/MagicMirror/modules/MMM-PIR-Sensor/node_modules/epoll/20.0.1/include/node/v8-ma                                     ybe.h:123:43: error: ‘is_lvalue_reference_v’ is not a member of ‘std’; did you mean ‘is_lvalue_                                     reference’?
      123 | template <class T, std::enable_if_t<!std::is_lvalue_reference_v<T>>* = nullptr>
    
    

    and finally:

    ✖ MagicMirror Rebuild Failed
    
    An unhandled error occurred inside electron-rebuild
    node-gyp failed to rebuild '/home/<myusername>/MagicMirror/modules/MMM-PIR-Sensor/node_modules/epo                                     ll'.
    Error: `make` failed with exit code: 2
    

    This will all mean a lot more to you than it does for me.

    B 1 Reply Last reply Aug 6, 2022, 4:03 PM Reply Quote 0
    • B Offline
      Blackeye @Blackeye
      last edited by Aug 6, 2022, 4:03 PM

      @sdetweil And this is the final part of the error message, in bright red:

       at ModuleRebuilder.rebuildNodeGypModule (/home/<myusername>/MagicMirror/modules/MMM-PIR-Sensor                                     /node_modules/magicmirror-rebuild/build/module-rebuilder.js:193:19)
          at processTicksAndRejections (node:internal/process/task_queues:96:5)
          at async Rebuilder.rebuildModuleAt (/home/<myusername>/MagicMirror/modules/MMM-PIR-Sensor/node                                     _modules/magicmirror-rebuild/build/rebuild.js:180:9)
          at async Rebuilder.rebuild (/home/<myusername>/MagicMirror/modules/MMM-PIR-Sensor/node_modules                                     /magicmirror-rebuild/build/rebuild.js:143:17)
          at async /home/<myusername>/MagicMirror/modules/MMM-PIR-Sensor/node_modules/magicmirror-rebuil                                     d/build/cli.js:141:9
      
      
      S 2 Replies Last reply Aug 6, 2022, 4:23 PM Reply Quote 0
      • S Offline
        sdetweil @Blackeye
        last edited by Aug 6, 2022, 4:23 PM

        @Blackeye hm. 1st time I’ve seen his tools fail…

        @bugsounet any guidance

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        B 1 Reply Last reply Aug 6, 2022, 4:33 PM Reply Quote 0
        • B Offline
          bugsounet Banned @sdetweil
          last edited by bugsounet Aug 6, 2022, 4:37 PM Aug 6, 2022, 4:33 PM

          @sdetweil yes

          epoll/20.0.1 means it uses electron v20.0.1 for MagicMirror instead of v19.x that why it crash.

          I’ll leave it up to you to explain it :)

          1 Reply Last reply Reply Quote 0
          • S Offline
            sdetweil @Blackeye
            last edited by sdetweil Aug 6, 2022, 7:48 PM Aug 6, 2022, 6:53 PM

            @Blackeye ok, heres a way around the problem

            fix MM install to have one new tool

            cd ~/MagicMirror
            npm install electron-rebuild
            

            fix MMM-PIR-Sensor

            cd ~/MagicMirror/modules/MMM-PIR-Sensor
            nano package.json 
            

            scroll down to

              "scripts": {
                "postinstall": "node_modules/.bin/electron-rebuild -e ../../node_modules/electron"
              },
            

            change the postinstall line so it looks like this

              "scripts": {
                "postinstall": "~/MagicMirror/node_modules/.bin/electron-rebuild -e ../../node_modules/electron"
              },
            

            ctrl-o to save the updated package.json
            ctrl-x to exit the editor

            then

            npm install
            

            should work correctly now

            I just tested this on my MM 2.20 version, on both my linux machine and my pi4 with bullseye

            Sam

            How to add modules

            learning how to use browser developers window for css changes

            B 1 Reply Last reply Aug 7, 2022, 10:26 AM Reply Quote 0
            • B Offline
              Blackeye @sdetweil
              last edited by Blackeye Aug 7, 2022, 10:29 AM Aug 7, 2022, 10:26 AM

              @sdetweil said in Default Weather module still not displaying:

              ~/MagicMirror/node_modules/.bin/electron-rebuild -e …/…/node_modules/electron

              Yes! It installed correctly this time, so that change in the path did the trick. I did get some warnings however:

              npm WARN deprecated har-validator@5.1.5: this library is no longer supported
              npm WARN deprecated uuid@3.4.0: Please upgrade  to version 7 or higher.  Older versions may use Math.random() in certain cir                                 cumstances, which is known to be problematic.  See https://v8.dev/blog/math-random for details.
              npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142
              

              So it is not quite a perfect solution, but it works!
              Many thanks for the suggestions and the solution!

              S 1 Reply Last reply Aug 7, 2022, 11:24 AM Reply Quote 0
              • S Offline
                sdetweil @Blackeye
                last edited by Aug 7, 2022, 11:24 AM

                @Blackeye ignore the warnings, nothing we can do about them.

                the ‘problem’ here is that the compiler needs to know what version of electron to build for, but can’t figure it out.

                using electron-rebuild from the mm libs solves that

                Sam

                How to add modules

                learning how to use browser developers window for css changes

                1 Reply Last reply Reply Quote 0
                • 1
                • 2
                • 3
                • 4
                • 4 / 4
                4 / 4
                • First post
                  37/39
                  Last post
                Enjoying MagicMirror? Please consider a donation!
                MagicMirror created by Michael Teeuw.
                Forum managed by Sam, technical setup by Karsten.
                This forum is using NodeBB as its core | Contributors
                Contact | Privacy Policy