如何解决 Windows 10 上的“node-gyp 重建"问题?

2022-01-15 00:00:00 windows-10 node.js javascript npm node-gyp

作为尝试在项目中使用节点 NPM 依赖项的一部分,我遇到了 node-gyp rebuild 问题,我遇到了

解决方案

要安装节点插件,您需要安装 VC/VCExpress 而不仅仅是 VC 运行时/可再发行组件.确保它是Windows 桌面"版本.

之后,您应该可以通过 npm 安装插件(不过,您可能需要重新打开在安装 VCExpress 之前打开的所有命令提示符).

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:

解决方案

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

相关文章