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

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

[复制链接]

340

主题

524

回帖

3508

积分

管理员

积分
3508
QQ
发表于 2023-8-28 23:03:22 | 显示全部楼层 |阅读模式
报错信息:
. c& q9 U4 g: H) J; M) V7 ^/ f  ~
```bash
7 h. y# o' K, L' [4 n" e( o( B( ngyp ERR! find VS. R0 E, ^: N! w
gyp ERR! find VS msvs_version not set from command line or npm config
! U. s8 ^' d+ j& B1 |gyp ERR! find VS running in VS Command Prompt, installation path is:! `+ r+ U5 v* I" a$ \1 c! P' B- ^; C
gyp ERR! find VS "C:\Program Files (x86)\Microsoft Visual Studio\2017"
3 D$ ^) h; k: X, K4 r  g$ Q5 j1 cgyp ERR! find VS - will only use this version
( x. d5 W/ e) `' O9 Pgyp ERR! find VS could not use PowerShell to find Visual Studio 2017 or newer; U7 R  h; {$ P: }3 e
gyp ERR! find VS looking for Visual Studio 2015) U6 r: U9 r* S0 D5 U
gyp ERR! find VS - not found- v2 x/ X' m, y9 a
gyp ERR! find VS looking for Visual Studio 20137 y0 Z4 O- o  z* N! p1 p/ s4 H
gyp ERR! find VS - not found1 ^8 j3 f' P" @5 E4 B( U! h; ]  F  W
gyp ERR! find VS
1 }( r3 T) [# K7 E# v' Y4 ]gyp ERR! find VS **************************************************************9 Z! n8 ^4 s6 m) d' t$ \3 _
gyp ERR! find VS You need to install the latest version of Visual Studio5 q8 U5 x# W& @; x
gyp ERR! find VS including the "Desktop development with C++" workload.
  Y1 n% x* R! e$ \* ygyp ERR! find VS For more information consult the documentation at:
9 B2 @# o6 J2 G# B8 ~3 Cgyp ERR! find VS https://github.com/nodejs/node-gyp#on-windows- `* f0 v/ m+ W
gyp ERR! find VS **************************************************************3 x; p5 Z( S' q7 |* s5 R
gyp ERR! find VS
" M# h9 R. Q9 G8 Q5 M6 kgyp ERR! configure error
5 s" s6 w+ H, B" sgyp ERR! stack Error: Could not find any Visual Studio installation to use" u$ T* i4 ^/ {* U
gyp ERR! stack     at VisualStudioFinder.fail (D:\rymcu\electron-serialport\node_modules\node-gyp\lib\find-visualstu
1 d% S  S* u& d: D& P1 {1 ldio.js:121:47)% ?" q* C" J4 e/ u& i
gyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\find-visualstudio.js:74:16/ g. C' j' g0 x9 z& `# r
gyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\find-visualstudio.js:372:16
/ o% w( m( A$ E9 {% Agyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\util.js:54:79 C) L& I1 |( L5 y- M. s# [( K$ }
gyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\util.js:33:16$ \6 R4 P5 g$ `
gyp ERR! stack     at ChildProcess.exithandler (child_process.js:310:5)4 ]7 r& X4 f& p0 A
gyp ERR! stack     at ChildProcess.emit (events.js:315:20)
3 f5 q: }1 K; h; L$ D! O$ F6 G0 X! O9 Egyp ERR! stack     at maybeClose (internal/child_process.js:1021:16)& ?. H4 N- f* s9 P. P$ K
gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:286:5)
3 D0 |7 `( @- Hgyp ERR! System Windows_NT 10.0.15063

/ h/ d" Q$ O/ p) k  j3 x, y2 e) ^8 w" b2 K  X, P
解决办法2 k( Q+ N9 P9 K( i* ?
1、卸载nodejs重新安装一遍
. \3 B7 H- D5 T  t
( C2 _. L( s" w, Z2、设置淘宝镜像 npm config set registry https://registry.npm.taobao.org
; U' j/ N6 k# V+ C, f( C3 f( t8 u5 H- f" |5 N* d4 u
3、安装nodejs所需的环境(Visual Studio XX、python什么鬼的),执行这个命令会自动检测并帮你安装好,npm install --g --production windows-build-tools
! y# j: }6 L: F* q; @' X————————————————0 l0 X5 p8 |4 i; L
版权声明:本文为CSDN博主「一点一滴成长」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。% t6 [  ^. N/ x: a4 x
原文链接:https://blog.csdn.net/qq_39946015/article/details/127351920
回复

使用道具 举报

340

主题

524

回帖

3508

积分

管理员

积分
3508
QQ
 楼主| 发表于 2023-8-28 23:03:39 | 显示全部楼层
4、关键所在!!!执行编译时指定python版本,npm install --python=python2.7
8 f4 p) }+ }* Q5 S% n# H, t( C: f* x7 x# t$ i- i
由于我的电脑之前安装过python3版本,并且设置了环境变量,所以npm install会找我默认的python,所以执行时指定nodejs只支持的python2版本。
$ J( o; H0 S- N" f2 A1 p0 J
6 t- x. e6 p: N  t& p9 i然后,神奇的事情到了,我把编译包modules删掉后重新编译(这次不指定python2版本直接npm install),居然奇迹般的又没有报错!!!想不通。。。难道npm会将上次编译成功的配置保存下来??算了不纠结了哭泣!) o& u* _8 I7 C6 U7 X$ j
————————————————
( u; N3 j1 s( _; t, F# ~版权声明:本文为CSDN博主「一点一滴成长」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。1 e" Y& ?# r  u6 `
原文链接:https://blog.csdn.net/qq_39946015/article/details/127351920
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2026-1-15 05:51 , Processed in 0.020550 second(s), 3 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2026 Discuz! Team.

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