下载node-gyp依赖包报错:gyp ERR! find VS msvs_version not set from command line or npm config

报错界面如下:

下载node-gyp依赖包报错:gyp ERR! find VS msvs_version not set from command line or npm config_第1张图片

下载node-gyp依赖包报错:gyp ERR! find VS msvs_version not set from command line or npm config_第2张图片

问题:not looking for VS2013 as it only supported up to Node.js 8

解决方案:

you need to install the lastest version of version of Visual Studio
你需要下载最新的Visual Studio

找到GitHub地址:https://github.com/nodejs/node-gyp
下载node-gyp依赖包报错:gyp ERR! find VS msvs_version not set from command line or npm config_第3张图片

下载Vistual Studio链接:https://visualstudio.microsoft.com/zh-hans/thank-you-downloading-visual-studio/?sku=BuildTools

下载node-gyp依赖包报错:gyp ERR! find VS msvs_version not set from command line or npm config_第4张图片

不要立刻就去选择c++桌面开发,这样下载的会是Vistual Studio生成工具2022,这个下载之后,还是会出错

没有选择windows SDK
下载node-gyp依赖包报错:gyp ERR! find VS msvs_version not set from command line or npm config_第5张图片

Vistual Studio生成工具2022下载还是不行
下载node-gyp依赖包报错:gyp ERR! find VS msvs_version not set from command line or npm config_第6张图片

下载Vistual Studio2017, 让windows支持c++编译环境

关闭弹窗,选择可用里面的Vistual Studio2017,社区版,个体开发人员就足够了
下载node-gyp依赖包报错:gyp ERR! find VS msvs_version not set from command line or npm config_第7张图片

看清楚是Vistual Studio2017,我已经安装过了,所以截图时是修改状态
下载node-gyp依赖包报错:gyp ERR! find VS msvs_version not set from command line or npm config_第8张图片

勾选一个windows sdk

一定要勾选一个windows sdk
下载node-gyp依赖包报错:gyp ERR! find VS msvs_version not set from command line or npm config_第9张图片

npm config set msvs_version 2017

然后cmd输入:npm config set msvs_version 2017,然后就可以在项目工程里安装node-gyp了

如果还是出错,像下面这样报错,可能是node版本过高导致的
下载node-gyp依赖包报错:gyp ERR! find VS msvs_version not set from command line or npm config_第10张图片

下载node-gyp依赖包报错:gyp ERR! find VS msvs_version not set from command line or npm config_第11张图片

降低node版本,可以用nvm管理node版本

下载node-gyp依赖包报错:gyp ERR! find VS msvs_version not set from command line or npm config_第12张图片

使用稳定版就v14.17.0就很完美了
下载: nvm add v14.17.0
使用:nvm use v14.17.0
下载node-gyp依赖包报错:gyp ERR! find VS msvs_version not set from command line or npm config_第13张图片

总结:

  1. windows没有c++编译环境,所以要下载Vistual Studio
  2. windows没有设置msvs_version,所以下载之后,还需要使用命令行设置
  3. 注意node版本

你可能感兴趣的:(前端,BUG记录,前后端交互,npm,前端,node.js)