最近因为公司需要研究了一下node-gyp,记录一下安装方法。本人只用了第一种方法安装。参考node-gyp的github主页。
方法一
先安装node-gyp
npm install -g node-gyp
然后必须以管理员身份运行powershell或者cmd否则以下指令会报错
npm install --global --production windows-build-tools
这个指令会安装 vs2017编译器 和 python2.7
方法二
麻烦一点
先安装node-gyp
npm install -g node-gyp
再自己安装vs2017和python2.7
配置好python
npm config set python /path/to/executable/python2.7
配置好c++构建工具
npm config set msvs_version 2017