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

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

[复制链接]

338

主题

520

回帖

3458

积分

管理员

积分
3458
QQ
发表于 2023-8-28 23:03:22 | 显示全部楼层 |阅读模式
报错信息:7 u1 c$ g1 w! e- \
```bash# ~2 |; q+ z5 L' f5 C9 F
gyp ERR! find VS
% e( c' q$ p& }. C1 d, hgyp ERR! find VS msvs_version not set from command line or npm config
$ L9 k, v4 f" F6 g$ v" Sgyp ERR! find VS running in VS Command Prompt, installation path is:5 I4 Z5 D$ i8 M  D* H
gyp ERR! find VS "C:\Program Files (x86)\Microsoft Visual Studio\2017"
, `. W$ h  _% V% y2 A! jgyp ERR! find VS - will only use this version* d% F6 b3 E6 x
gyp ERR! find VS could not use PowerShell to find Visual Studio 2017 or newer
8 O9 K" M" I% {% Ngyp ERR! find VS looking for Visual Studio 2015
9 q) T0 S1 u$ K" _* g$ p, egyp ERR! find VS - not found
7 J# a  d; t9 S+ h  I1 x/ G7 Wgyp ERR! find VS looking for Visual Studio 2013
$ y# n/ |* Y/ ]gyp ERR! find VS - not found
2 @# B- w( A8 m; I# W) Q/ ugyp ERR! find VS
! L5 w( \4 W  s/ s& y. pgyp ERR! find VS **************************************************************
/ [% m$ {/ X  n* z- e, Agyp ERR! find VS You need to install the latest version of Visual Studio1 g1 o, `. Z$ e2 x# X  K
gyp ERR! find VS including the "Desktop development with C++" workload.
) N/ k) k" d% m3 K5 ~7 u" e. Lgyp ERR! find VS For more information consult the documentation at:4 D6 [( A5 w2 f% E) G: G' S
gyp ERR! find VS https://github.com/nodejs/node-gyp#on-windows
$ y" p3 ]/ r0 b* T- cgyp ERR! find VS **************************************************************
; L# X. [. g( e- {* ^  \gyp ERR! find VS; u  F( U4 t  L2 j1 l5 r
gyp ERR! configure error/ E: ]* b' y" W9 h1 y# n. @- I/ O
gyp ERR! stack Error: Could not find any Visual Studio installation to use
3 J4 X+ _5 U; dgyp ERR! stack     at VisualStudioFinder.fail (D:\rymcu\electron-serialport\node_modules\node-gyp\lib\find-visualstu; C; W' _: H3 D
dio.js:121:47)7 t3 ?# h: j8 r& j# P9 _
gyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\find-visualstudio.js:74:16- m- O, o  l! \% \7 |' n
gyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\find-visualstudio.js:372:161 S2 b0 z: c2 d  b6 f
gyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\util.js:54:77 A3 D$ y4 r4 N/ Z0 G
gyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\util.js:33:16
" b% F6 _: T' C# F/ [gyp ERR! stack     at ChildProcess.exithandler (child_process.js:310:5)4 k  S" o) F& d! d
gyp ERR! stack     at ChildProcess.emit (events.js:315:20)
' L' D5 N/ V. Z1 A6 {2 D3 dgyp ERR! stack     at maybeClose (internal/child_process.js:1021:16)
& P, x0 K: d2 D/ B8 {% E0 agyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:286:5)
& z6 W! b+ i- o0 Ugyp ERR! System Windows_NT 10.0.15063

/ c9 j+ G1 F% W& Q# o! b5 U
% ]4 }- ~5 ~8 Y解决办法  h7 B6 |1 L) W" M# ?. r. n
1、卸载nodejs重新安装一遍3 E9 I, [6 D7 D7 p- q/ b
+ w* f0 O; ^6 u3 c) F% s/ i
2、设置淘宝镜像 npm config set registry https://registry.npm.taobao.org
# v1 }" |; K  c/ O' [* }# W( \8 T! l4 V# \9 V, K4 I! B
3、安装nodejs所需的环境(Visual Studio XX、python什么鬼的),执行这个命令会自动检测并帮你安装好,npm install --g --production windows-build-tools
  N& ?, b7 f8 V: y2 s————————————————, @( X; |5 E% ^9 Z/ R, w4 `
版权声明:本文为CSDN博主「一点一滴成长」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
0 m6 o; t, o! b1 ?2 u6 X$ E" c原文链接:https://blog.csdn.net/qq_39946015/article/details/127351920
回复

使用道具 举报

338

主题

520

回帖

3458

积分

管理员

积分
3458
QQ
 楼主| 发表于 2023-8-28 23:03:39 | 显示全部楼层
4、关键所在!!!执行编译时指定python版本,npm install --python=python2.7
8 p/ X1 U- p* N; L! Y  X
% b- F# Y& Z  k' V' q+ x. m由于我的电脑之前安装过python3版本,并且设置了环境变量,所以npm install会找我默认的python,所以执行时指定nodejs只支持的python2版本。) d# F' V6 Y6 P

- [' J& M  I9 k5 n  N  H8 c5 @7 `然后,神奇的事情到了,我把编译包modules删掉后重新编译(这次不指定python2版本直接npm install),居然奇迹般的又没有报错!!!想不通。。。难道npm会将上次编译成功的配置保存下来??算了不纠结了哭泣!
+ @# d; i1 i1 [————————————————3 ~" ^* W$ \" S% \0 k- [7 T: r; I
版权声明:本文为CSDN博主「一点一滴成长」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
; G# t, E1 q/ w3 a0 m& C: q原文链接:https://blog.csdn.net/qq_39946015/article/details/127351920
回复

使用道具 举报

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

本版积分规则

QQ|Archiver|手机版|小黑屋|通达创业无忧 ( 粤ICP备2023021749号|粤公网安备 44030402006137号 )

GMT+8, 2025-12-30 10:02 , Processed in 0.023034 second(s), 4 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.

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