找回密码
 立即注册
查看: 928|回复: 1

npm install齐天大坑!!!gyp ERR! find VS msvs_version not set from command line

[复制链接]

328

主题

499

回帖

3260

积分

管理员

积分
3260
QQ
发表于 2023-8-28 23:03:22 | 显示全部楼层 |阅读模式
报错信息:
  d- Q' |: a+ N+ i2 R
```bash& [" a9 z. R, I
gyp ERR! find VS. C$ b. s  @1 C. H
gyp ERR! find VS msvs_version not set from command line or npm config
* I) I7 \+ m$ w/ ~gyp ERR! find VS running in VS Command Prompt, installation path is:5 `& H* x- W0 _$ c# i
gyp ERR! find VS "C:\Program Files (x86)\Microsoft Visual Studio\2017"/ U: L4 _0 u7 @! m  X4 A: q
gyp ERR! find VS - will only use this version
* ^- j; \! Y$ k" Sgyp ERR! find VS could not use PowerShell to find Visual Studio 2017 or newer6 z  O' C5 Q7 Y' E
gyp ERR! find VS looking for Visual Studio 2015
$ r" \: ]0 ~" ]! c2 y* D. Fgyp ERR! find VS - not found
, [9 L# Z% K+ ~. A7 h$ S! R9 t$ k) Cgyp ERR! find VS looking for Visual Studio 2013+ i) C0 V% [5 M
gyp ERR! find VS - not found* b: z4 P3 l( j" i0 F9 e4 N' S
gyp ERR! find VS
5 ?' o9 o  Q/ Fgyp ERR! find VS **************************************************************
- }' {9 {4 L/ p# q" agyp ERR! find VS You need to install the latest version of Visual Studio( R/ @  u6 L# H) I: X4 {
gyp ERR! find VS including the "Desktop development with C++" workload.2 q4 |; p# ~+ D# e  Q3 C# H, k
gyp ERR! find VS For more information consult the documentation at:+ H# ]1 ^8 u: v8 C0 @' ^4 l
gyp ERR! find VS https://github.com/nodejs/node-gyp#on-windows
& ^/ `; {9 W! cgyp ERR! find VS **************************************************************9 ~# ?! m$ L2 P6 g8 |+ Y% O- o; E6 \
gyp ERR! find VS
" I8 w. |, J6 L; n' P# R& Q) T  }gyp ERR! configure error
5 g" \6 r* T& |/ B. ^  Ugyp ERR! stack Error: Could not find any Visual Studio installation to use, o: Y( [9 x7 p7 l6 s6 r2 C% `; h
gyp ERR! stack     at VisualStudioFinder.fail (D:\rymcu\electron-serialport\node_modules\node-gyp\lib\find-visualstu! e% Z2 \1 S' ]' u4 \3 e, M
dio.js:121:47)4 Y7 a& [% d3 e8 X, Y- s
gyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\find-visualstudio.js:74:16
, S" ~) W) Q/ j5 Q# h4 }gyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\find-visualstudio.js:372:16; n4 _& D2 L' ?6 i* ?: I
gyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\util.js:54:7
; J8 _$ a) A1 g, }& e- d3 Ngyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\util.js:33:16) Z8 q4 o6 o, N- c9 ~1 J# v
gyp ERR! stack     at ChildProcess.exithandler (child_process.js:310:5)
* @7 Y6 J/ X# Dgyp ERR! stack     at ChildProcess.emit (events.js:315:20)
' _5 y! W) q* ]9 |) D2 P- g9 Vgyp ERR! stack     at maybeClose (internal/child_process.js:1021:16)
7 C+ l# ]. A. l, I/ A1 @- @4 |gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:286:5)
% q  K8 l9 R; @' g7 @$ _# igyp ERR! System Windows_NT 10.0.15063

3 O) w7 D5 @, {. _/ l
$ I: j+ P: _  F  l4 a解决办法
1 `5 t# m7 n4 q+ v& R2 G1、卸载nodejs重新安装一遍5 i  d3 F6 z8 K- v3 R/ i' }8 y2 N! }
: i' h& M8 _4 p; W
2、设置淘宝镜像 npm config set registry https://registry.npm.taobao.org) ^, [' w( I0 |) ^. S& Q
; s! q! _1 n# J- f
3、安装nodejs所需的环境(Visual Studio XX、python什么鬼的),执行这个命令会自动检测并帮你安装好,npm install --g --production windows-build-tools
8 c# t6 l9 K! o. {4 h+ a' j————————————————6 P2 j! a, B7 A: b& |
版权声明:本文为CSDN博主「一点一滴成长」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。6 ^* \/ G5 c8 K2 x
原文链接:https://blog.csdn.net/qq_39946015/article/details/127351920
回复

使用道具 举报

328

主题

499

回帖

3260

积分

管理员

积分
3260
QQ
 楼主| 发表于 2023-8-28 23:03:39 | 显示全部楼层
4、关键所在!!!执行编译时指定python版本,npm install --python=python2.7) r. J0 r) B$ e& e, N0 C4 q- F4 p
! M8 q! g( P+ a$ d7 @2 X2 r
由于我的电脑之前安装过python3版本,并且设置了环境变量,所以npm install会找我默认的python,所以执行时指定nodejs只支持的python2版本。8 F! O# c0 F* F! n5 C
4 O) b* p8 Y% R1 p' t/ g
然后,神奇的事情到了,我把编译包modules删掉后重新编译(这次不指定python2版本直接npm install),居然奇迹般的又没有报错!!!想不通。。。难道npm会将上次编译成功的配置保存下来??算了不纠结了哭泣!
2 S4 O5 \. V: h; P. I————————————————
8 i- G- v/ v# J8 K4 N& p. ?3 R版权声明:本文为CSDN博主「一点一滴成长」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
. j9 v8 R0 s1 Y5 N原文链接:https://blog.csdn.net/qq_39946015/article/details/127351920
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|通达产控投资 ( 粤ICP备2023021749号-1|粤公网安备 44030402006137号 )

GMT+8, 2025-10-11 02:37 , Processed in 0.068305 second(s), 3 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.

快速回复 返回顶部 返回列表