Installing meteor - npm install meteor - node ./build.js fails on system

Hello,

I’m trying to install meteor on win10,
I’m new to meteor and looking into using it for development we require.

The error from the npm debug log

6573 error Windows_NT 10.0.10586
6574 error argv “C:\Users\kingg\AppData\Local\.meteor\packages\meteor-tool\1.4.0\mt-os.windows.x86_32\dev_bundle\bin\node.exe” “C:\Users\kingg\AppData\Local\.meteor\packages\meteor-tool\1.4.0\mt-os.windows.x86_32\dev_bundle\lib\node_modules\npm\bin\npm-cli.js” “install” "meteor"
6575 error node v4.4.7
6576 error npm v3.10.5
6577 error code ELIFECYCLE
6578 error fibers@0.6.9 install: node ./build.js
6578 error Exit status 1
6579 error Failed at the fibers@0.6.9 install script ‘node ./build.js’.
6579 error Make sure you have the latest version of node.js and npm installed.
6579 error If you do, this is most likely a problem with the fibers package,
6579 error not with npm itself.
6579 error Tell the author that this fails on your system:
6579 error node ./build.js
6579 error You can get information on how to open an issue for this project with:
6579 error npm bugs fibers
6579 error Or if that isn’t available, you can get their info via:
6579 error npm owner ls fibers
6579 error There is likely additional logging output above.
6580 verbose exit [ 1, true ]

Please can you assist me

Thank you!

Did you find a fix for this error? I am getting a very similar error on Windows 10 when attempting npm install meteor in order to reference meteor in import statements in my project:

384 error Windows_NT 10.0.14393
385 error argv "C:\\Users\\Keith\\AppData\\Local\\.meteor\\packages\\meteor-tool\\1.4.2_3\\mt-os.windows.x86_32\\dev_bundle\\bin\\node.exe" "C:\\Users\\Keith\\AppData\\Local\\.meteor\\packages\\meteor-tool\\1.4.2_3\\mt-os.windows.x86_32\\dev_bundle\\lib\\node_modules\\npm\\bin\\npm-cli.js" "install" "meteor"
386 error node v4.6.2
387 error npm  v3.10.9
388 error code ELIFECYCLE
389 error fibers@0.6.9 install: `node ./build.js`
389 error Exit status 1
390 error Failed at the fibers@0.6.9 install script 'node ./build.js'.
390 error Make sure you have the latest version of node.js and npm installed.
390 error If you do, this is most likely a problem with the fibers package,
390 error not with npm itself.
390 error Tell the author that this fails on your system:
390 error     node ./build.js
390 error You can get information on how to open an issue for this project with:
390 error     npm bugs fibers
390 error Or if that isn't available, you can get their info via:
390 error     npm owner ls fibers
390 error There is likely additional logging output above.
391 verbose exit [ 1, true ]

Why would you want to install meteor via npm?
At this point meteor hasn’t transitioned to npm yet.

If you have trouble with eslint check the eslint-import-resolver-meteor.

Thanks for the reply. Installing via npm was my mistaken newbie assumption on how to resolve a TypeScript cannot find module error.

Is there an equivalent work-around to convince TypeScript that the meteor module is properly imported?