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.

    After 2.8 I'm having tons of issues. What are the steps from square 1 to get this working?

    Scheduled Pinned Locked Moved Unsolved Troubleshooting
    46 Posts 3 Posters 22.8k Views 3 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.
    • S Do not disturb
      sdetweil @Gomalley
      last edited by

      @Gomalley do

      pm2 logs
      

      More than likely u need to do

      npm install
      

      In the MagicMirror folder, and in each module folder that has a package.json file.

      Sam

      How to add modules

      learning how to use browser developers window for css changes

      G 1 Reply Last reply Reply Quote 0
      • G Offline
        Gomalley @sdetweil
        last edited by

        @sdetweil aright. I’ll try that however I’ve done it before and no luck. How would I do it for the other modules and package.json files. All I know what to do is just to type the command

        Npm install
        

        But It doesn’t work

        S 1 Reply Last reply Reply Quote 0
        • S Do not disturb
          sdetweil @Gomalley
          last edited by sdetweil

          @Gomalley case sensitive, must be

          npm install
          

          Look in the modules folder and each of those for a package.json file.
          And if u find one, then in that folder do

          npm install 
          

          There

          You could also try my update script. I haven’t tried it over an attempted update

          See here
          https://forum.magicmirror.builders/topic/10859/new-update-upgrade-script-ready-for-testing

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          G 1 Reply Last reply Reply Quote 0
          • G Offline
            Gomalley @sdetweil
            last edited by

            @sdetweil
            So I deleted everything and I started over. On a new load of raspbian without doing the MM bash command, I typed

            npm install
            

            It gave me this:

            pi@raspberrypi:~ $ npm install
            npm WARN npm npm does not support Node.js v10.15.2
            npm WARN npm You should probably upgrade to a newer version of node as we
            npm WARN npm can't make any promises that npm will work with this version.
            npm WARN npm Supported releases of Node.js are the latest release of 4, 6, 7, 8, 9.
            npm WARN npm You can find the latest version at https://nodejs.org/
            npm WARN saveError ENOENT: no such file or directory, open '/home/pi/package.json'
            npm notice created a lockfile as package-lock.json. You should commit this file.
            npm WARN enoent ENOENT: no such file or directory, open '/home/pi/package.json'
            npm WARN pi No description
            npm WARN pi No repository field.
            npm WARN pi No README data
            npm WARN pi No license field.
            
            up to date in 1.599s
            
            

            After this I tried your new code and I got this:

            pi@raspberrypi:~ $ bash -c  "$(curl -sL https://www.dropbox.com/s/4qod39yi8ek0feu/upgrade-script?dl=0)"
            bash: line 24: cd: /home/pi/MagicMirror/installers: No such file or directory
            bash: line 26: cd: OLDPWD not set
            doing test run = true
            bash: line 61: /home/pi/MagicMirror/installers/dumpactivemodules.js: No such file or directory
            update log will be in /home/pi/upgrade.log
            bash: line 70: cd: /home/pi/MagicMirror: No such file or directory
            bash: line 72: cd: css: No such file or directory
            saving custom.css
            cp: cannot stat 'custom.css': No such file or directory
            bash: line 75: cd: OLDPWD not set
            fatal: not a git repository (or any of the parent directories): .git
            fetching latest revisions
            fatal: not a git repository (or any of the parent directories): .git
            MagicMirror git pull failed
            bash: line 183: cd: css: No such file or directory
            restoring custom.css
            cp: cannot stat 'save_custom.css': No such file or directory
            rm: cannot remove 'save_custom.css': No such file or directory
            bash: line 188: cd: OLDPWD not set
            bash: line 210: cd: OLDPWD not set
            

            Should I try running the original bash command?:
            bash -c “$(curl -sL https://raw.githubusercontent.com/MichMich/MagicMirror/master/installers/raspberry.sh)”

            S 1 Reply Last reply Reply Quote 0
            • S Do not disturb
              sdetweil @Gomalley
              last edited by

              @Gomalley you are missing some fundamentals.

              THIS is called install

              git clone ....  copies the code from github to your system
                   at this point it will not run
                   you need to change to the MagicMirror folder and execute npm install so that all the additional node 
                      routines needed are loaded onto your system
              

              now, once you have installed

              there are updates every quarter…

              so, then in the MagicMirror folder you need to download the new code OVER the prior code
              so, you do

              cd ~/MagicMirror
              git pull
              

              but we are in the same position as during install…
              routines we need may have changed, or we may have decided to use something different

              so, once again, to get all the updates for other code we use

              cd ~/MagicMirror
              npm install
              

              BUT there is one more step…
              any modules YOU installed may have dependencies too
              SO, they (like MagicMirror) specify those dependencies in a package.json file

              so, we need to look thru ALL the non-default module folders looking for a package.json file
              if we find one, we need to run npm install in that modules folder too.
              repeat til all module folders with a package.json file

              now…

              the install script (raspberry.sh) does the
              git clone
              and
              npm install in tghe MagicMirror folder.

              my update script
              does all the update steps… (I just added a check for the MagicMirror folder being present)
              but you had to have done the install steps first…

              npm install by itself without download any MagicMirror code doesn’t do anything useful, as there is no package.json file in the uses home folder by default.

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              G 1 Reply Last reply Reply Quote 0
              • G Offline
                Gomalley @sdetweil
                last edited by

                @sdetweil I tried putting npm install into the modules and vendor folders but there weren’t that many json files in that directory.

                S 1 Reply Last reply Reply Quote 0
                • S Do not disturb
                  sdetweil @Gomalley
                  last edited by

                  @Gomalley no. In the modules/MMM-??? Folders for the modules u have installed in addition to the base MagicMirror

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  G 1 Reply Last reply Reply Quote 0
                  • G Offline
                    Gomalley @sdetweil
                    last edited by

                    @sdetweil when i go to /home/pi/MagicMirror/modules
                    these are the folders present: Default, node_modules, README.md
                    If i further click into default i get a ton more (alert, calendar, clock, compliment s, currentweather, helloworld , newsfeed, …) Other than the magicmirror program, I have not installed anything else

                    S 1 Reply Last reply Reply Quote 0
                    • S Do not disturb
                      sdetweil @Gomalley
                      last edited by sdetweil

                      @Gomalley ok, wasnt clear u had just the base MagicMirror.

                      If you do pm2 logs, what does it show?

                      Also, what does npm -v show?

                      U may need to upgrade npm

                      npm i -g npm
                      

                      Then do the npm install again in the MagicMirror folder

                      Sam

                      How to add modules

                      learning how to use browser developers window for css changes

                      G 2 Replies Last reply Reply Quote 0
                      • G Offline
                        Gomalley @sdetweil
                        last edited by

                        @sdetweil
                        pi@raspberrypi:~ $ pm2 logs
                        [PM2] Spawning PM2 daemon with pm2_home=/home/pi/.pm2
                        internal/modules/cjs/loader.js:583
                        throw err;
                        ^

                        Error: Cannot find module ‘shelljs’
                        at Function.Module._resolveFilename (internal/modules/cjs/loader.js:581:15)
                        at Function.Module._load (internal/modules/cjs/loader.js:507:25)
                        at Module.require (internal/modules/cjs/loader.js:637:17)
                        at require (/usr/local/lib/node_modules/pm2/node_modules/v8-compile-cache/v8-compile-cache.js:161:20)
                        at module.exports.Client.launchDaemon (/usr/local/lib/node_modules/pm2/lib/Client.js:244:7)
                        at /usr/local/lib/node_modules/pm2/lib/Client.js:103:10
                        at /usr/local/lib/node_modules/pm2/lib/Client.js:311:14
                        at process._tickCallback (internal/process/next_tick.js:61:11)
                        pi@raspberrypi:~ $ npm -v
                        6.10.2
                        pi@raspberrypi:~ $

                        This is what happened when I did pm2 logs and npm -v. I am about to see what npm i -g npm will do

                        1 Reply Last reply Reply Quote 0
                        • G Offline
                          Gomalley @sdetweil
                          last edited by

                          @sdetweil
                          pi@raspberrypi:~ $ npm i -g npm
                          npm WARN checkPermissions Missing write access to /usr/local/lib/node_modules/npm
                          npm WARN checkPermissions Missing write access to /usr/local/lib/node_modules
                          npm ERR! path /usr/local/lib/node_modules/npm
                          npm ERR! code EACCES
                          npm ERR! errno -13
                          npm ERR! syscall access
                          npm ERR! Error: EACCES: permission denied, access ‘/usr/local/lib/node_modules/npm’
                          npm ERR! { [Error: EACCES: permission denied, access ‘/usr/local/lib/node_modules/npm’]
                          npm ERR! stack:
                          npm ERR! ‘Error: EACCES: permission denied, access '/usr/local/lib/node_modules/npm'’,
                          npm ERR! errno: -13,
                          npm ERR! code: ‘EACCES’,
                          npm ERR! syscall: ‘access’,
                          npm ERR! path: ‘/usr/local/lib/node_modules/npm’ }
                          npm ERR!
                          npm ERR! The operation was rejected by your operating system.
                          npm ERR! It is likely you do not have the permissions to access this file as the current user
                          npm ERR!
                          npm ERR! If you believe this might be a permissions issue, please double-check the
                          npm ERR! permissions of the file and its containing directories, or try running
                          npm ERR! the command again as root/Administrator (though this is not recommended).

                          npm ERR! A complete log of this run can be found in:
                          npm ERR! /home/pi/.npm/_logs/2019-08-05T19_21_26_414Z-debug.log

                          S 1 Reply Last reply Reply Quote 0
                          • S Do not disturb
                            sdetweil @Gomalley
                            last edited by

                            @Gomalley go old sudo screws thing up again…

                            cd ~
                            sudo chown -R pi .
                            

                            Then try again…

                            Sam

                            How to add modules

                            learning how to use browser developers window for css changes

                            G 1 Reply Last reply Reply Quote 0
                            • G Offline
                              Gomalley @sdetweil
                              last edited by

                              @sdetweil this is what happened when I typed in the command

                              pi@raspberrypi:~ $ sudo chown -R pi
                              chown: missing operand after ‘pi’
                              Try ‘chown --help’ for more information.

                              S 1 Reply Last reply Reply Quote 0
                              • S Do not disturb
                                sdetweil @Gomalley
                                last edited by

                                @Gomalley there was a dot at the end, it was important

                                Sam

                                How to add modules

                                learning how to use browser developers window for css changes

                                G 1 Reply Last reply Reply Quote 0
                                • G Offline
                                  Gomalley @sdetweil
                                  last edited by

                                  @sdetweil

                                  Sorry, I missed that.
                                  This is what happened

                                  pi@raspberrypi:~ $ cd ~
                                  pi@raspberrypi:~ $ sudo chown -R pi .
                                  pi@raspberrypi:~ $ 
                                  

                                  It just went to the next line. Not sure why

                                  S 1 Reply Last reply Reply Quote 0
                                  • S Do not disturb
                                    sdetweil @Gomalley
                                    last edited by

                                    @Gomalley it doesn’t say anything, it just changes ownership of everything in the home folder and down to the user pi.

                                    Now, back to what u were doing before

                                    Sam

                                    How to add modules

                                    learning how to use browser developers window for css changes

                                    G 1 Reply Last reply Reply Quote 0
                                    • G Offline
                                      Gomalley @sdetweil
                                      last edited by

                                      @sdetweil
                                      I tried to excute some of the commands you gave me

                                      pi@raspberrypi:~ $ pm2 logs
                                      [PM2] Spawning PM2 daemon with pm2_home=/home/pi/.pm2
                                      internal/modules/cjs/loader.js:583
                                          throw err;
                                          ^
                                      
                                      Error: Cannot find module 'shelljs'
                                          at Function.Module._resolveFilename (internal/modules/cjs/loader.js:581:15)
                                          at Function.Module._load (internal/modules/cjs/loader.js:507:25)
                                          at Module.require (internal/modules/cjs/loader.js:637:17)
                                          at require (/usr/local/lib/node_modules/pm2/node_modules/v8-compile-cache/v8-compile-cache.js:161:20)
                                          at module.exports.Client.launchDaemon (/usr/local/lib/node_modules/pm2/lib/Client.js:244:7)
                                          at /usr/local/lib/node_modules/pm2/lib/Client.js:103:10
                                          at /usr/local/lib/node_modules/pm2/lib/Client.js:311:14
                                          at process._tickCallback (internal/process/next_tick.js:61:11)
                                      pi@raspberrypi:~ $ npm i -g npm
                                      npm WARN checkPermissions Missing write access to /usr/local/lib/node_modules/npm
                                      npm WARN checkPermissions Missing write access to /usr/local/lib/node_modules/npm/node_modules
                                      npm WARN checkPermissions Missing write access to /usr/local/lib/node_modules
                                      npm ERR! path /usr/local/lib/node_modules/npm
                                      npm ERR! code EACCES
                                      npm ERR! errno -13
                                      npm ERR! syscall access
                                      npm ERR! Error: EACCES: permission denied, access '/usr/local/lib/node_modules/npm'
                                      npm ERR!  { [Error: EACCES: permission denied, access '/usr/local/lib/node_modules/npm']
                                      npm ERR!   stack:
                                      npm ERR!    'Error: EACCES: permission denied, access \'/usr/local/lib/node_modules/npm\'',
                                      npm ERR!   errno: -13,
                                      npm ERR!   code: 'EACCES',
                                      npm ERR!   syscall: 'access',
                                      npm ERR!   path: '/usr/local/lib/node_modules/npm' }
                                      npm ERR! 
                                      npm ERR! The operation was rejected by your operating system.
                                      npm ERR! It is likely you do not have the permissions to access this file as the current user
                                      npm ERR! 
                                      npm ERR! If you believe this might be a permissions issue, please double-check the
                                      npm ERR! permissions of the file and its containing directories, or try running
                                      npm ERR! the command again as root/Administrator (though this is not recommended).
                                      
                                      npm ERR! A complete log of this run can be found in:
                                      npm ERR!     /home/pi/.npm/_logs/2019-08-06T18_59_40_902Z-debug.log
                                      pi@raspberrypi:~ $ 
                                      
                                      

                                      I ran “pm2 logs” and “npm i -g npm”
                                      Looks like I got similar results. Should I do

                                      npm install
                                      

                                      In the MagicMirror folder now?

                                      S 1 Reply Last reply Reply Quote 0
                                      • S Do not disturb
                                        sdetweil @Gomalley
                                        last edited by

                                        @Gomalley no. Looks like u installed npm w sudo(root)

                                        So, short term do

                                        sudo npm i -g npm
                                        

                                        Sam

                                        How to add modules

                                        learning how to use browser developers window for css changes

                                        G 1 Reply Last reply Reply Quote 0
                                        • G Offline
                                          Gomalley @sdetweil
                                          last edited by

                                          @sdetweil Sweet I think that worked

                                          pi@raspberrypi:~ $ sudo npm i -g npm
                                          /usr/local/bin/npm -> /usr/local/lib/node_modules/npm/bin/npm-cli.js
                                          /usr/local/bin/npx -> /usr/local/lib/node_modules/npm/bin/npx-cli.js
                                          + npm@6.10.3
                                          updated 3 packages in 128.39s
                                          pi@raspberrypi:~ $ 
                                          

                                          Now that I have done that, Should I run

                                          npm install
                                          

                                          and then:

                                          cd ~/MagicMirror
                                          npm install
                                          
                                          S 1 Reply Last reply Reply Quote 0
                                          • S Do not disturb
                                            sdetweil @Gomalley
                                            last edited by

                                            @Gomalley only

                                            cd ~/MagicMirror
                                            npm install
                                            

                                            Sam

                                            How to add modules

                                            learning how to use browser developers window for css changes

                                            G 1 Reply Last reply Reply Quote 0

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 3
                                            • 1 / 3
                                            • First post
                                              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