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

install MM2.18 on win10 pc

Scheduled Pinned Locked Moved Solved Troubleshooting
22 Posts 2 Posters 7.1k 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 Offline
    sdetweil @Johans
    last edited by Mar 18, 2022, 5:51 PM

    @johans

    well, the output says that the \ wasn’t right as it removed all the slashes and made 1 big string…

    because u posted screenshots and not text I can’t show more

    what node/npm versions did u install ??

    npm -v
    node -v

    Sam

    How to add modules

    learning how to use browser developers window for css changes

    J 3 Replies Last reply Mar 20, 2022, 8:10 AM Reply Quote 0
    • J Offline
      Johans @sdetweil
      last edited by Mar 20, 2022, 8:10 AM

      @sdetweil

      npm is version 8.5.2
      node = 17.7.2

      1 Reply Last reply Reply Quote 0
      • J Offline
        Johans @sdetweil
        last edited by Mar 20, 2022, 9:38 AM

        @sdetweil said in install MM2.18 on win10 pc:

        because u posted screenshots and not text I can’t show more

        Do you want the content of the package.json file?

        {
        	"name": "magicmirror",
        	"version": "2.18.0",
        	"description": "The open source modular smart mirror platform.",
        	"main": "js/electron.js",
        	"scripts": {
        		"start": "node_modules\\.bin\\electron js\\electron.js",
        		"start:dev": "DISPLAY=\"${DISPLAY:=:0}\" ./node_modules/.bin/electron js/electron.js dev",
        		"server": "node ./serveronly",
        		"install": "echo \"Installing vendor files ...\n\" && cd vendor && npm install --loglevel=error",
        		"install-fonts": "echo \"Installing fonts ...\n\" && cd fonts && npm install --loglevel=error",
        		"postinstall": "npm run install-fonts && echo \"MagicMirror installation finished successfully! \n\"",
        		"test": "NODE_ENV=test jest -i --forceExit",
        		"test:coverage": "NODE_ENV=test nyc --reporter=lcov --reporter=text jest -i --forceExit",
        		"test:electron": "NODE_ENV=test jest --selectProjects electron -i --forceExit",
        		"test:e2e": "NODE_ENV=test jest --selectProjects e2e -i --forceExit",
        		"test:unit": "NODE_ENV=test jest --selectProjects unit -i --forceExit",
        		"test:prettier": "prettier . --check",
        		"test:js": "eslint 'js/**/*.js' 'modules/default/**/*.js' 'clientonly/*.js' 'serveronly/*.js' 'translations/*.js' 'vendor/*.js' 'tests/**/*.js' 'config/*' --config .eslintrc.json",
        		"test:css": "stylelint 'css/main.css' 'fonts/*.css' 'modules/default/**/*.css' 'vendor/*.css' --config .stylelintrc.json",
        		"test:calendar": "node ./modules/default/calendar/debug.js",
        		"config:check": "node js/check_config.js",
        		"lint:prettier": "prettier . --write",
        		"lint:js": "eslint 'js/**/*.js' 'modules/default/**/*.js' 'clientonly/*.js' 'serveronly/*.js' 'translations/*.js' 'vendor/*.js' 'tests/**/*.js' 'config/*' --config .eslintrc.json --fix",
        		"lint:css": "stylelint 'css/main.css' 'fonts/*.css' 'modules/default/**/*.css' 'vendor/*.css' --config .stylelintrc.json --fix",
        		"lint:staged": "pretty-quick --staged",
        		"prepare": "[ -f node_modules/.bin/husky ] && husky install || echo no husky installed."
        	},
        
        
        1 Reply Last reply Reply Quote 0
        • J Offline
          Johans @sdetweil
          last edited by Mar 20, 2022, 9:47 AM

          @sdetweil

          I also installed MM on Ubuntu V20.4 and I have exactly the same message as I get on Debian.

          S 1 Reply Last reply Mar 20, 2022, 11:39 AM Reply Quote 0
          • S Offline
            sdetweil @Johans
            last edited by Mar 20, 2022, 11:39 AM

            @Johans is it the same node and npm?

            we havent tested on node 17.

            only node 14 and 16

            Sam

            How to add modules

            learning how to use browser developers window for css changes

            J 1 Reply Last reply Mar 20, 2022, 1:37 PM Reply Quote 0
            • J Offline
              Johans @sdetweil
              last edited by Mar 20, 2022, 1:37 PM

              @sdetweil On Ubuntu I used node 16.14.2 and npm 8.5.5 while on Debian I used node 17.7.2 and npm 8.5.2. And both seems to give me the same error message

              S 1 Reply Last reply Mar 20, 2022, 1:45 PM Reply Quote 0
              • S Offline
                sdetweil @Johans
                last edited by Mar 20, 2022, 1:45 PM

                @Johans on linux, if you use my script, it does everything… installs node, npm … tools (git, …) etc

                trying to recreate now

                I use Ubuntu as my desktop and dev environment, so i know it works there…

                you don’t use sudo, install as normal user, not root.
                must have the desktop version of OS (as the browsers draws graphics which requires the graphical env)

                show me the ~/install.log
                (you can send to my email, same userid at gmail)

                Sam

                How to add modules

                learning how to use browser developers window for css changes

                J 1 Reply Last reply Mar 20, 2022, 1:56 PM Reply Quote 0
                • S Offline
                  sdetweil @Johans
                  last edited by sdetweil Mar 20, 2022, 1:54 PM Mar 20, 2022, 1:50 PM

                  @Johans on my windows 11 with 16.9.0 (node version) and package.js start line like this

                  		"start": "node_modules\\.bin\\electron js\\electron.js",
                  

                  I see this is the startup messages

                  > node_modules\.bin\electron js\electron.js
                  

                  I see the same results on node 17.7.2

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  1 Reply Last reply Reply Quote 0
                  • S Offline
                    sdetweil @Johans
                    last edited by Mar 20, 2022, 1:56 PM

                    @Johans sorry, I missed this line

                    but in the end I prefere more the linux, so I installed debian, git, nodejs, and MM.
                    

                    so, you do NOT change the package.json for linux… only for windows…

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

                    1 Reply Last reply Reply Quote 0
                    • J Offline
                      Johans @sdetweil
                      last edited by Mar 20, 2022, 1:56 PM

                      @sdetweil Sorry but i’m new on Linux, where to find install log?

                      S 1 Reply Last reply Mar 20, 2022, 1:59 PM Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 1 / 3
                      1 / 3
                      • First post
                        9/22
                        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