I have some troubles with npm packages on my Windows workstation... I have a set of NPM dependencies in my package.json file:
\"devDependencies\": { \"babel-p
From the official website: https://www.npmjs.com/package/node-gyp
You should do following cmd: (In my computer, I installed vc2015)
$ node-gyp configure --msvs_version=2015
I created an issue on github for node-gyp. And also here is a disscussion of a similar problem. Probaly it not helped me, but maybe it can be useful for someone else.
Write those code in admin command prompt:
npm install --global --production windows-build-tools
And then hit enter.
Windows open PowerShell in administrative tool and run this command
npm install --global --production windows-build-tools
You need Microsoft Visual C++ build tools, which are packaged with Visual Studio. However, they are now also available as a standalone download. After installing these tools and restarting your computer, you should be able to install packages that use node-gyp under the hood.