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

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

[复制链接]

335

主题

520

回帖

3417

积分

管理员

积分
3417
QQ
发表于 2023-8-28 23:03:22 | 显示全部楼层 |阅读模式
报错信息:7 A% ~9 ]. d' N: ^' i( ^
```bash
8 p/ d. ?2 \1 Q6 {. Q# R- ]/ F1 Hgyp ERR! find VS
' b& v6 U1 U2 l- ^  f, Qgyp ERR! find VS msvs_version not set from command line or npm config
$ K6 N5 _3 I5 d' s0 Z4 `+ `gyp ERR! find VS running in VS Command Prompt, installation path is:
3 h2 k8 [; l+ r# G) ugyp ERR! find VS "C:\Program Files (x86)\Microsoft Visual Studio\2017"
8 i9 l; q7 n. s7 n5 |/ ^: ugyp ERR! find VS - will only use this version
, x& j4 x6 @: o- ^% F  r$ cgyp ERR! find VS could not use PowerShell to find Visual Studio 2017 or newer: Y" q) r! f8 S% ?" u# v
gyp ERR! find VS looking for Visual Studio 2015
$ |5 ^& H/ n9 N+ `2 J2 pgyp ERR! find VS - not found
1 }: H* d. ~5 ^* q$ S" xgyp ERR! find VS looking for Visual Studio 20130 ~+ Z+ X3 U( M6 s* U) w' P+ m
gyp ERR! find VS - not found* n2 E. [# w4 I8 j$ m! y* K
gyp ERR! find VS5 q# o) _5 z' J7 r- j  v
gyp ERR! find VS **************************************************************
8 L% ?7 k0 s! D7 L6 a2 ngyp ERR! find VS You need to install the latest version of Visual Studio
- }3 ]9 [2 \' T* Fgyp ERR! find VS including the "Desktop development with C++" workload.
, U4 m, m& ]7 R4 egyp ERR! find VS For more information consult the documentation at:' f0 Y( ^$ {* l/ F- \
gyp ERR! find VS https://github.com/nodejs/node-gyp#on-windows
1 y# ]% Y; x; T+ ^# {( Egyp ERR! find VS **************************************************************
) X8 F8 U3 u8 i: h, z. j( _# b- `gyp ERR! find VS
  r6 K$ i5 @  r# _# F. I0 `* [gyp ERR! configure error: d: R; M. X  W* U
gyp ERR! stack Error: Could not find any Visual Studio installation to use6 J. Q  n5 U% U4 S& _" F
gyp ERR! stack     at VisualStudioFinder.fail (D:\rymcu\electron-serialport\node_modules\node-gyp\lib\find-visualstu
  {, {/ w4 w2 ]" Ndio.js:121:47)
, M# @7 ^$ z0 |+ mgyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\find-visualstudio.js:74:16
7 N! V9 M9 o( C( X4 Wgyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\find-visualstudio.js:372:16
, s3 [* ^2 r1 l) ^4 J2 U% \gyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\util.js:54:74 |, i: \1 s* A& Z3 O
gyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\util.js:33:16
( B7 x- n; }1 _" M8 p2 a& Hgyp ERR! stack     at ChildProcess.exithandler (child_process.js:310:5)
% E0 i' o! ?9 U$ v6 X3 Zgyp ERR! stack     at ChildProcess.emit (events.js:315:20)! {) n; n/ N) F4 A; C
gyp ERR! stack     at maybeClose (internal/child_process.js:1021:16)
7 {/ \- r6 C" |gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:286:5)" d, y  U  @, ^) D
gyp ERR! System Windows_NT 10.0.15063
3 [% W* f/ \% _6 L1 R& ^9 U2 p
. j3 |7 ~* m& X! g9 S
解决办法+ m" T: J5 s" a4 R( s3 C
1、卸载nodejs重新安装一遍6 o: v+ T; k4 X/ t( `  V" t7 y

. q0 J: |& d3 d( b) L& Y2、设置淘宝镜像 npm config set registry https://registry.npm.taobao.org
$ Q2 v1 |( P6 J; K, U. n
' n( u* _$ |6 J+ S  b3、安装nodejs所需的环境(Visual Studio XX、python什么鬼的),执行这个命令会自动检测并帮你安装好,npm install --g --production windows-build-tools
) M' q/ K$ @) M, [- q————————————————+ [7 O* A& L2 y2 }8 _5 i: [
版权声明:本文为CSDN博主「一点一滴成长」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。* d4 h+ c/ }+ u3 j
原文链接:https://blog.csdn.net/qq_39946015/article/details/127351920
回复

使用道具 举报

335

主题

520

回帖

3417

积分

管理员

积分
3417
QQ
 楼主| 发表于 2023-8-28 23:03:39 | 显示全部楼层
4、关键所在!!!执行编译时指定python版本,npm install --python=python2.7
. x+ m5 f0 y# j5 u- `: u
5 y8 q$ F0 V* |# @) z6 E' B由于我的电脑之前安装过python3版本,并且设置了环境变量,所以npm install会找我默认的python,所以执行时指定nodejs只支持的python2版本。% H- x; E5 h4 V9 c+ D+ h$ n

- ]2 X, @1 n- q. K$ p* Y' _然后,神奇的事情到了,我把编译包modules删掉后重新编译(这次不指定python2版本直接npm install),居然奇迹般的又没有报错!!!想不通。。。难道npm会将上次编译成功的配置保存下来??算了不纠结了哭泣!: I8 T% @, @+ X0 X( h
————————————————, [7 _' V: X. ~6 i9 a
版权声明:本文为CSDN博主「一点一滴成长」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。  e6 k: X0 f2 A$ b/ @
原文链接:https://blog.csdn.net/qq_39946015/article/details/127351920
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-12-9 11:06 , Processed in 0.072162 second(s), 3 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.

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