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

Error on update to MM 2.11.0

Scheduled Pinned Locked Moved Solved Troubleshooting
32 Posts 2 Posters 5.3k Views 2 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.
  • K Offline
    killing joke @sdetweil
    last edited by Nov 14, 2021, 6:26 PM

    @sdetweil
    I could facepalm me so hard for my last post since I want to hurry up my own post.
    Anyway, of course i have to be in the MM folder. but then it occurs the error which i wrote in my first code.
    How can I check the status of my npm?

    S 2 Replies Last reply Nov 14, 2021, 6:27 PM Reply Quote 0
    • S Away
      sdetweil @killing joke
      last edited by Nov 14, 2021, 6:27 PM

      @killing-joke

      npm -v
      node -v

      Sam

      How to add modules

      learning how to use browser developers window for css changes

      K 1 Reply Last reply Nov 14, 2021, 6:28 PM Reply Quote 0
      • K Offline
        killing joke @sdetweil
        last edited by Nov 14, 2021, 6:28 PM

        @sdetweil
        npm version 6.14.5
        node version 9.11.2

        S 1 Reply Last reply Nov 14, 2021, 6:31 PM Reply Quote 0
        • S Away
          sdetweil @killing joke
          last edited by Nov 14, 2021, 6:28 PM

          @killing-joke

          to update manually you did

          ~/MagicMirror
          git pull
          npm install 
          

          right?

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          K 1 Reply Last reply Nov 14, 2021, 6:33 PM Reply Quote 0
          • S Away
            sdetweil @killing joke
            last edited by Nov 14, 2021, 6:31 PM

            @killing-joke no… that won’t do…

            best thing is to run my upgrade script

            see https://github.com/sdetweil/MagicMirror_scripts

            and use force, instead of apply (because u already have the mm code pulled down)

            bash -c  "$(curl -sL https://raw.githubusercontent.com/sdetweil/MagicMirror_scripts/master/upgrade-script.sh)" apply
            

            Sam

            How to add modules

            learning how to use browser developers window for css changes

            1 Reply Last reply Reply Quote 0
            • K Offline
              killing joke @sdetweil
              last edited by Nov 14, 2021, 6:33 PM

              @sdetweil
              I “git pulled” it in my MM folder but I didn´t installed npm again. I thought it is independent from the MM.
              installed it again know but following occurs

              pi@raspberrypi:~/MagicMirror $ npm install
              
              > magicmirror@2.11.0 install /home/pi/MagicMirror
              > echo "Installing vendor files ...
              " && cd vendor && npm install --loglevel=error
              
              Installing vendor files ...
              
              
              > @fortawesome/fontawesome-free@5.15.4 postinstall /home/pi/MagicMirror/vendor/node_modules/@fortawesome/fontawesome-free
              > node attribution.js
              
              Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
              License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
              
              added 1 package from 1 contributor, removed 74 packages, updated 5 packages and audited 9 packages in 11.012s
              found 0 vulnerabilities
              
              
              > magicmirror@2.11.0 postinstall /home/pi/MagicMirror
              > npm run install-fonts && echo "MagicMirror installation finished successfully! 
              "
              
              
              > magicmirror@2.11.0 install-fonts /home/pi/MagicMirror
              > echo "Installing fonts ...
              " && cd fonts && npm install --loglevel=error
              
              Installing fonts ...
              
              updated 1 package and audited 1 package in 2.515s
              found 0 vulnerabilities
              
              MagicMirror installation finished successfully! 
              
              audited 1172 packages in 61.47s
              
              70 packages are looking for funding
                run `npm fund` for details
              
              found 88 vulnerabilities (4 low, 42 moderate, 40 high, 2 critical)
                run `npm audit fix` to fix them, or `npm audit` for details
              
              

              afterwards the same error occurs as in the first post described.

              S 1 Reply Last reply Nov 14, 2021, 6:34 PM Reply Quote 0
              • S Away
                sdetweil @killing joke
                last edited by Nov 14, 2021, 6:34 PM

                @killing-joke said in Error on update to MM 2.11.0:

                magicmirror@2.11.0

                but u still have 2.11 installed

                so the git pull failed

                Sam

                How to add modules

                learning how to use browser developers window for css changes

                K 1 Reply Last reply Nov 14, 2021, 6:37 PM Reply Quote 0
                • K Offline
                  killing joke @sdetweil
                  last edited by killing joke Nov 14, 2021, 6:38 PM Nov 14, 2021, 6:37 PM

                  @sdetweil
                  funny, but when i go into the MM folder and type “git pull” it says it´s the latest software… (in German)

                  S 1 Reply Last reply Nov 14, 2021, 6:38 PM Reply Quote 0
                  • S Away
                    sdetweil @killing joke
                    last edited by Nov 14, 2021, 6:38 PM

                    @killing-joke do

                    cd MagicMirror
                    git remote -v
                    grep version package.json

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

                    K 1 Reply Last reply Nov 14, 2021, 6:40 PM Reply Quote 0
                    • K Offline
                      killing joke @sdetweil
                      last edited by killing joke Nov 14, 2021, 6:40 PM Nov 14, 2021, 6:40 PM

                      @sdetweil result as followed

                      pi@raspberrypi:~/MagicMirror $ git remote -v
                      origin	https://github.com/MichMich/MagicMirror.git (fetch)
                      origin	https://github.com/MichMich/MagicMirror.git (push)
                      pi@raspberrypi:~/MagicMirror $ grep version package.json
                        "version": "2.11.0",
                      pi@raspberrypi:~/MagicMirror $ 
                      
                      
                      S 1 Reply Last reply Nov 14, 2021, 6:41 PM Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 4
                      • 1 / 4
                      1 / 4
                      • First post
                        9/32
                        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