找回密码
 立即注册
查看: 1451|回复: 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 | 显示全部楼层 |阅读模式
报错信息:. v: N6 d; Q* j3 j5 O+ E
```bash4 }5 @6 _$ s" P: R+ k8 s
gyp ERR! find VS
4 L0 c) Y/ ?" }4 Z1 l0 I) A$ [gyp ERR! find VS msvs_version not set from command line or npm config# r+ Q# K6 X4 g5 ?- X) o
gyp ERR! find VS running in VS Command Prompt, installation path is:) l9 r1 L6 n# Q& K
gyp ERR! find VS "C:\Program Files (x86)\Microsoft Visual Studio\2017"& d; Q* Y2 e" d6 f
gyp ERR! find VS - will only use this version
4 I/ E' ~  |1 W0 y8 j1 Rgyp ERR! find VS could not use PowerShell to find Visual Studio 2017 or newer2 K4 j4 W) K9 q( X: J4 A( Z
gyp ERR! find VS looking for Visual Studio 2015! K. S1 C, u& [, `! t/ |% O7 z
gyp ERR! find VS - not found$ s4 Z( M6 w8 h  Q4 n
gyp ERR! find VS looking for Visual Studio 2013, @1 l, S/ w8 [: |# y! Q" n$ Y
gyp ERR! find VS - not found
, {# e& u9 K) U5 _% pgyp ERR! find VS; U0 g# e3 x3 ?, G, T) y1 G& u
gyp ERR! find VS **************************************************************1 E5 E- s7 ]- x8 y
gyp ERR! find VS You need to install the latest version of Visual Studio
3 l" ]: M% d; i7 L( t9 }9 R8 jgyp ERR! find VS including the "Desktop development with C++" workload.7 Q9 Q( ]" x. |" z" r
gyp ERR! find VS For more information consult the documentation at:! m) C+ _: i' m; J1 r) ]" X
gyp ERR! find VS https://github.com/nodejs/node-gyp#on-windows& }' O& O/ s) w& e9 Y; L$ ^
gyp ERR! find VS **************************************************************
; C, X6 O* R0 R2 {0 ogyp ERR! find VS. {5 c( |& s6 v- G9 H; @2 N
gyp ERR! configure error$ t0 q6 Z  u# W8 f' z! Z
gyp ERR! stack Error: Could not find any Visual Studio installation to use
  n7 C1 v" B4 C" a4 n$ R% }2 {gyp ERR! stack     at VisualStudioFinder.fail (D:\rymcu\electron-serialport\node_modules\node-gyp\lib\find-visualstu
: w+ q2 P+ b( |. }- i; ldio.js:121:47)
4 _3 L3 H, T( W# Hgyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\find-visualstudio.js:74:165 }6 M" s  k4 {2 x0 K
gyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\find-visualstudio.js:372:169 n5 B# `  d$ U7 t- y( |9 n' P
gyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\util.js:54:7
+ d1 J; G8 V! v/ fgyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\util.js:33:16) B- Q3 f; g2 _) R; c# R6 L$ p
gyp ERR! stack     at ChildProcess.exithandler (child_process.js:310:5)- `) E0 v, B: {5 k4 ]; i5 I
gyp ERR! stack     at ChildProcess.emit (events.js:315:20); g# K; x2 Y  n4 |$ a: H: x0 H5 u
gyp ERR! stack     at maybeClose (internal/child_process.js:1021:16)- d  R) i. r. R1 Z( A" y7 k
gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:286:5)
, G+ }$ C/ ?0 w# Fgyp ERR! System Windows_NT 10.0.15063
! u* K2 M# z! Q# }; W  G$ y

6 y3 }- z3 v) s* T' L, S. G6 a解决办法
5 M8 }" y$ u# q1 y1 m* \- B1、卸载nodejs重新安装一遍
* t# {8 {$ v# ?/ x8 B3 K4 B4 E! I( g* o7 a
2、设置淘宝镜像 npm config set registry https://registry.npm.taobao.org
9 H; c2 D2 y* A) |9 F5 }5 z: N. @: N3 x* x& k
3、安装nodejs所需的环境(Visual Studio XX、python什么鬼的),执行这个命令会自动检测并帮你安装好,npm install --g --production windows-build-tools0 f% q+ u0 I) e, X3 r" z
————————————————
& c4 Z- E8 J- L0 h) ?4 D! B( w& O7 w& k+ A版权声明:本文为CSDN博主「一点一滴成长」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
, G$ r3 |! A  n) P& r/ p+ T9 m原文链接: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
1 f3 j) B; q& d/ g
, U  z7 J$ _) H" |由于我的电脑之前安装过python3版本,并且设置了环境变量,所以npm install会找我默认的python,所以执行时指定nodejs只支持的python2版本。8 {! E. I7 p* l# U

8 v  Z9 L# R# g: Z然后,神奇的事情到了,我把编译包modules删掉后重新编译(这次不指定python2版本直接npm install),居然奇迹般的又没有报错!!!想不通。。。难道npm会将上次编译成功的配置保存下来??算了不纠结了哭泣!' N  V) W+ D+ s9 O% ~& a
————————————————
) V: @% p8 L  n版权声明:本文为CSDN博主「一点一滴成长」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。0 T; S3 s; A5 h% F8 Y
原文链接:https://blog.csdn.net/qq_39946015/article/details/127351920
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2026-1-27 13:15 , Processed in 0.021690 second(s), 2 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2026 Discuz! Team.

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