• 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.

Clean installation... fails left and right

Scheduled Pinned Locked Moved Bug Hunt
17 Posts 6 Posters 5.3k Views 4 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.
  • M Offline
    MichMich Admin @devinhedge
    last edited by Jan 2, 2019, 2:22 PM

    @devinhedge said in Clean installation... fails left and right:

    Not to be snarky… really… I’m concerned that MagicMirror isn’t being maintained. During installation there are a lot of deprecated node.js module warnings, and security warnings…

    As others have said, most of your problems are because you use Raspbian Lite.

    That being said: you have a point. The auto installer script isn’t maintained as well as I want it to be. Due to the fast development speed of Raspbian, it runs into issues. Since most of the contributors don’t install the core from scratch very often, we don’t run into these issues.

    I’m considering deprecating the automatic installer and suggesting to manual install Node, clone MagicMirror and then run npm install. To be fair: that’s how I install my MagicMirror.

    Of course, PR’s to fix the auto-installer are more than welcome!

    1 Reply Last reply Reply Quote 1
    • D Offline
      dazza120
      last edited by dazza120 Jan 2, 2019, 2:37 PM Jan 2, 2019, 2:36 PM

      Yep I tried lite on my Pi 3B+ but it doesn’t work, Stretch desktop works, but think I had to go for the full package ie all the bloat ware, I’ve uninstalled all the rubbish now, but it’s not really an issue for me as I’m running my Pi off of an SSD so no sd card size limit/price, PS I think from what I remember I had to do a manual install and then install PM2 as it didn’t boot MM after reboot

      1 Reply Last reply Reply Quote 0
      • S Offline
        shbatm Module Developer
        last edited by shbatm Jan 2, 2019, 6:57 PM Jan 2, 2019, 6:15 PM

        I’m seeing issues with the newest “Raspbian Stretch with desktop image” (Nov 2018–non-bloatware) as well – I did a fresh, manual installation, no errors, but electron will not start with the OpenGL driver (full KMS or fake KMS) enabled. It runs through everything fine on npm start but then just stalls at “Launching application.” If I disable OpenGL, it works fine.

        Tested at Tag v2.6.0 and on the develop branch (2.7.0-dev), same issues.

        EDIT: Definitely an issue with electron: adding app.disableHardwareAcceleration(); in js/electron.js makes it open fine.

        EDIT 2: Opened an issue for this #1500, looks like Electron v3.0.13 works.

        D S 2 Replies Last reply Jan 6, 2019, 1:21 PM Reply Quote 1
        • D Offline
          devinhedge @shbatm
          last edited by Jan 6, 2019, 1:21 PM

          @shbatm @dazza120 @MichMich @bhepler @Mykle1

          Okay… I think I’ve figured it out. It isn’t good news:

          I’ve brought this up on another thread, but I’ll mention here so that it is captured in context: for the last couple months Node.js and npm are currently BROKEN on RaspberryPi.

          I just tried a test this morning using the started Electron app at https://electronjs.org/docs/tutorial/first-app

          Running the automated install is a Red Herring. It is inappropriate to suggest it.

          We have to figure out how to fix the bugs in the Node.js installation for Raspberry Pi before anything else. I’m wondering if installing an older version of Node.js is the solution. If so, then what version would we start with?

          S 1 Reply Last reply Jan 6, 2019, 3:40 PM Reply Quote 0
          • S Offline
            shbatm Module Developer @devinhedge
            last edited by Jan 6, 2019, 3:40 PM

            @devinhedge said in Clean installation... fails left and right:

            for the last couple months Node.js and npm are currently BROKEN on RaspberryPi.

            What version of node are you using and how are you trying to install it? Node.Js works fine with Raspberry Pi, just don’t install it from the default repos. Use these instructions:

            https://github.com/nodesource/distributions/blob/master/README.md

            I’ve installed both v8 and v10 successfully multiple times on new Pis in the last few months.

            D 1 Reply Last reply Jan 6, 2019, 8:14 PM Reply Quote 0
            • S Offline
              shbatm Module Developer @shbatm
              last edited by Jan 6, 2019, 3:44 PM

              @shbatm said in Clean installation... fails left and right:

              I’m seeing issues with the newest “Raspbian Stretch with desktop image” (Nov 2018–non-bloatware) as well – I did a fresh, manual installation, no errors, but electron will not start with the OpenGL driver (full KMS or fake KMS) enabled.

              Confirming what I confirmed in the issue on GitHub just so others aren’t misled… Upgrading to Electron v3.0.13 is working fine (this is now the version installed if you use the develop branch of MM). V2.x is not working on the new Raspbian because of the OpenGL driver and we can’t use V4.x yet because of bad dependency references.

              D 1 Reply Last reply Jan 6, 2019, 5:01 PM Reply Quote 0
              • D Offline
                dazza120 @shbatm
                last edited by Jan 6, 2019, 5:01 PM

                @shbatm how do I find out what version of electron I have, I’m on the latest version of Magic Mirror and would love to update everything on that side

                S 1 Reply Last reply Jan 6, 2019, 5:13 PM Reply Quote 0
                • S Offline
                  shbatm Module Developer @dazza120
                  last edited by Jan 6, 2019, 5:13 PM

                  @dazza120

                  cat ~/MagicMirror/node_modules/electron/package.json | grep '"version":'
                  

                  Upgrade with:

                  cd ~/MagicMirror/
                  npm install electron@3.0.13
                  
                  D 1 Reply Last reply Jan 6, 2019, 8:27 PM Reply Quote 1
                  • D Offline
                    devinhedge @shbatm
                    last edited by Jan 6, 2019, 8:14 PM

                    @shbatm said in Clean installation... fails left and right:

                    @devinhedge said in Clean installation... fails left and right:

                    for the last couple months Node.js and npm are currently BROKEN on RaspberryPi.

                    What version of node are you using and how are you trying to install it?

                    Current from default Rasbian repos.

                    Node.Js works fine with Raspberry Pi, just don’t install it from the default repos.

                    That may be the problem.

                    Use these instructions:

                    https://github.com/nodesource/distributions/blob/master/README.md

                    I’ve installed both v8 and v10 successfully multiple times on new Pis in the last few months.

                    I’ll give it a whirl. I was able to recreate the error 4 times so I just need to copy over the steps to recreate. I don’t have a lot of time to spend on it today.

                    1 Reply Last reply Reply Quote 1
                    • D Offline
                      dazza120 @shbatm
                      last edited by dazza120 Jan 6, 2019, 8:31 PM Jan 6, 2019, 8:27 PM

                      @shbatm said in Clean installation... fails left and right:

                      cat ~/MagicMirror/node_modules/electron/package.json | grep ‘“version”:’

                      Thanks appears I was running electron 2.0.16 3.0.13 installed fixed a few vulnerabilities and all seems to be working fine on the Pi3B+

                      1 Reply Last reply Reply Quote 0
                      • 1
                      • 2
                      • 1 / 2
                      1 / 2
                      • First post
                        10/17
                        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