Reputation: 59566
As part of trying to use a node NPM dependency in a project, I get a node-gyp rebuild
issue, which I have reported.
I am aware of the solution in this SO question, but it does not work for Windows 10 (I am on 32 bits, I don't know whether this is relevant). Windows SDK 7.1 (and others) won't install.
Does anyone have an operational solution for Windows 10?
Udpate
After trying npm install <module name> --msvs_version=2013
, I get a new error message:
Upvotes: 20
Views: 27282
Reputation: 638
This worked for me:
npm install --global --production windows-build-tools
Upvotes: 10
Reputation: 1046
I solved this problem on windows 8 and windows 10 pro with this tutorial.
I try a lot of times to solve this problem with many different solutions, but only worked for me this
I notice that i didn't use nodist to control the node version like this tutorial, I use NVM and worked fine, i don't test this tutorial with nodist. I used node 5.2.0.
Following the suggested by @prasun, the steps in correct order:
This is the only steps work for me in windows 8.1 and windows 10.
Upvotes: 8
Reputation: 106698
To install node addons, you need to have VC/VCExpress installed and not just the VC runtime/redistributable. Make sure it's the "Windows Desktop" edition.
After that, you should be able to install addons via npm (you may have to re-open any command prompts you had open before installing VCExpress though).
Upvotes: 5