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

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

[复制链接]

342

主题

543

回帖

3590

积分

管理员

积分
3590
QQ
发表于 2023-8-28 23:03:22 | 显示全部楼层 |阅读模式
报错信息:' P' n- Q6 |8 }( m4 _/ B
```bash% ]& f$ t( u- K
gyp ERR! find VS
1 {" N# L) h0 g/ jgyp ERR! find VS msvs_version not set from command line or npm config& z" s" z' U  {; O) ~4 X; ^
gyp ERR! find VS running in VS Command Prompt, installation path is:
! [7 H6 c+ j1 ~3 c, |$ n( k+ ngyp ERR! find VS "C:\Program Files (x86)\Microsoft Visual Studio\2017"8 `6 C" d2 M) I" S9 B+ M5 ^( |" q
gyp ERR! find VS - will only use this version' N# Z9 M1 C6 s, S9 ^7 E9 I
gyp ERR! find VS could not use PowerShell to find Visual Studio 2017 or newer
6 Q; p- H8 n% ggyp ERR! find VS looking for Visual Studio 2015
  `0 i  I" O2 N, d. [3 Xgyp ERR! find VS - not found
0 g/ {. m) Y; ~- Pgyp ERR! find VS looking for Visual Studio 20136 z4 f+ b7 F7 p  X, {0 Y
gyp ERR! find VS - not found
2 E7 M! t1 m, Sgyp ERR! find VS
1 w: D5 P; p* ?gyp ERR! find VS **************************************************************3 K$ Q7 D# L1 a  d1 f) U" N( L  B
gyp ERR! find VS You need to install the latest version of Visual Studio
7 \+ e# }4 q$ ggyp ERR! find VS including the "Desktop development with C++" workload.) f3 b& @2 @; ^; P2 o4 N
gyp ERR! find VS For more information consult the documentation at:
# y! ]9 q# t) K# x" N* y8 Tgyp ERR! find VS https://github.com/nodejs/node-gyp#on-windows
( [& M" M) T6 }+ _* i. [gyp ERR! find VS **************************************************************
) L/ x2 V- ~/ l/ w6 G( P( `gyp ERR! find VS# x% x* L' X$ |2 ?6 X
gyp ERR! configure error$ P* {$ r, X& p3 m
gyp ERR! stack Error: Could not find any Visual Studio installation to use, p5 n2 |3 N! u8 d; n
gyp ERR! stack     at VisualStudioFinder.fail (D:\rymcu\electron-serialport\node_modules\node-gyp\lib\find-visualstu, M( o. {  L  I. T! z8 {
dio.js:121:47)
" Y+ r0 K# i% vgyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\find-visualstudio.js:74:16# M  B; S; D- R6 Q' T; a+ F/ U
gyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\find-visualstudio.js:372:16+ N  ^7 w# w+ B+ c# F
gyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\util.js:54:7
% M4 l$ Y4 T7 t6 H3 kgyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\util.js:33:16, H# o/ J* v( Z0 p; q2 o
gyp ERR! stack     at ChildProcess.exithandler (child_process.js:310:5)
- m/ L, _; }# o& [gyp ERR! stack     at ChildProcess.emit (events.js:315:20)
) k8 U8 R5 [' B8 g3 V6 vgyp ERR! stack     at maybeClose (internal/child_process.js:1021:16)
+ T) [+ p- f0 L% G4 R5 G3 y) ygyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:286:5)" t7 l% S& h, G
gyp ERR! System Windows_NT 10.0.15063

3 v$ S4 c( \, H( |  w  s8 {3 ?# q1 u% a" }
解决办法  X& j' m( L, y3 ~% _3 v
1、卸载nodejs重新安装一遍
6 l3 C2 K& \: z# \/ Y8 R
! |" z8 v% u5 n( |# m& _0 F2、设置淘宝镜像 npm config set registry https://registry.npm.taobao.org7 b1 y& y$ x" J. B

$ M; V8 r1 l( j" c" D3、安装nodejs所需的环境(Visual Studio XX、python什么鬼的),执行这个命令会自动检测并帮你安装好,npm install --g --production windows-build-tools! K5 i2 T' {6 o. j: t" c6 [. ~- X5 s
————————————————0 N8 m" {$ i8 G
版权声明:本文为CSDN博主「一点一滴成长」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
7 n8 l6 Q2 R- E9 q- u1 }! `# }! L原文链接:https://blog.csdn.net/qq_39946015/article/details/127351920
回复

使用道具 举报

342

主题

543

回帖

3590

积分

管理员

积分
3590
QQ
 楼主| 发表于 2023-8-28 23:03:39 | 显示全部楼层
4、关键所在!!!执行编译时指定python版本,npm install --python=python2.7
) G7 M# h& i! l/ a8 L
, C7 g/ n% y$ Y3 _% q! X6 |2 }由于我的电脑之前安装过python3版本,并且设置了环境变量,所以npm install会找我默认的python,所以执行时指定nodejs只支持的python2版本。
5 S6 Y) J7 y6 d5 ]0 x; I) {8 s3 Q0 C- {4 i1 C! ?% i& Q
然后,神奇的事情到了,我把编译包modules删掉后重新编译(这次不指定python2版本直接npm install),居然奇迹般的又没有报错!!!想不通。。。难道npm会将上次编译成功的配置保存下来??算了不纠结了哭泣!
- t  ?* f4 q: p————————————————
3 B) G" }7 A. U) T5 A3 z( z5 i版权声明:本文为CSDN博主「一点一滴成长」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。# M" {" l, `3 k$ L# ^* `
原文链接:https://blog.csdn.net/qq_39946015/article/details/127351920
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2026-1-27 06:30 , Processed in 0.021843 second(s), 3 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2026 Discuz! Team.

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