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

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

[复制链接]

333

主题

515

回帖

3385

积分

管理员

积分
3385
QQ
发表于 2023-8-28 23:03:22 | 显示全部楼层 |阅读模式
报错信息:
: |& E( y; b& H3 F! X& P& |8 N7 g. @
```bash& |2 n7 e7 L* y. a& F6 U3 ?1 W
gyp ERR! find VS
  l& p" o+ V2 L: R) s3 j3 }gyp ERR! find VS msvs_version not set from command line or npm config' n2 E9 i, x& D
gyp ERR! find VS running in VS Command Prompt, installation path is:
9 r7 n3 d6 ]) L9 _4 t! M! V  X) ]+ kgyp ERR! find VS "C:\Program Files (x86)\Microsoft Visual Studio\2017"
5 |; A, z0 Z/ J+ b  I" I9 j3 y. G$ Mgyp ERR! find VS - will only use this version
, [6 ~: s9 }7 e1 Agyp ERR! find VS could not use PowerShell to find Visual Studio 2017 or newer
. [0 C( c! Y, x1 q4 p! Tgyp ERR! find VS looking for Visual Studio 2015
3 T5 H7 j  D$ }/ c8 z" ~gyp ERR! find VS - not found
* X* m( A$ W4 R( m$ E1 zgyp ERR! find VS looking for Visual Studio 2013
  @! B! y  t; E  F- {6 |5 rgyp ERR! find VS - not found
( ?" L- u. h& D3 w" ?. Igyp ERR! find VS
/ f0 n  l$ J) rgyp ERR! find VS **************************************************************
0 v% w% B3 u! g  Ogyp ERR! find VS You need to install the latest version of Visual Studio, Z* \  H* A0 w' ?: r
gyp ERR! find VS including the "Desktop development with C++" workload.
5 x; F3 N4 C" I, \) t" c5 G0 }! \9 Ygyp ERR! find VS For more information consult the documentation at:
- v, z8 h2 G- H+ C7 r/ s/ t4 ]gyp ERR! find VS https://github.com/nodejs/node-gyp#on-windows
4 d" e2 o' i. ^" V3 I1 w, O! ?gyp ERR! find VS **************************************************************
6 B9 L- m: \9 hgyp ERR! find VS
6 K8 }9 p. ?: ]* r1 hgyp ERR! configure error' B1 X* ~" G8 s# J$ A4 q
gyp ERR! stack Error: Could not find any Visual Studio installation to use/ U) i9 h& Q  l; e0 x
gyp ERR! stack     at VisualStudioFinder.fail (D:\rymcu\electron-serialport\node_modules\node-gyp\lib\find-visualstu" Z# r8 r, [2 c6 T2 a* s6 Q
dio.js:121:47)
% o, n* h& d& m; C2 xgyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\find-visualstudio.js:74:16. `- Z  F. C5 _+ V: I+ w
gyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\find-visualstudio.js:372:16& R0 k3 T3 L4 F
gyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\util.js:54:7% C: T) k" J9 ]& w+ S
gyp ERR! stack     at D:\rymcu\electron-serialport\node_modules\node-gyp\lib\util.js:33:16
# D) M  N- m0 M8 ^8 [gyp ERR! stack     at ChildProcess.exithandler (child_process.js:310:5)
4 S% j, o4 O6 i( \5 f, s* rgyp ERR! stack     at ChildProcess.emit (events.js:315:20)" Y( H9 n! o% P
gyp ERR! stack     at maybeClose (internal/child_process.js:1021:16)4 T4 X; `& L- a- Y3 v2 `
gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:286:5)
9 @/ j( i& ]5 o) `$ u" Bgyp ERR! System Windows_NT 10.0.15063

$ ^5 R% g( I9 M; @4 S, `/ K& B% L$ A% L5 B" X1 }0 ]& a$ l3 `* u0 S
解决办法
" g- s& |- }9 T1 v+ ?/ q1、卸载nodejs重新安装一遍6 I1 h, x8 H* e8 V0 x5 L

: Z, f/ D) `. {3 F& t$ k: l7 K! L( g2、设置淘宝镜像 npm config set registry https://registry.npm.taobao.org5 b0 k$ [3 E) q; y; T+ x- A

8 u/ d8 ~) j( W) K0 z: p3、安装nodejs所需的环境(Visual Studio XX、python什么鬼的),执行这个命令会自动检测并帮你安装好,npm install --g --production windows-build-tools0 u* K8 L* @& A; W
————————————————
: _) Q. C0 c4 s: b7 R9 N4 \版权声明:本文为CSDN博主「一点一滴成长」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。8 l, `5 J4 \3 j! h
原文链接:https://blog.csdn.net/qq_39946015/article/details/127351920
回复

使用道具 举报

333

主题

515

回帖

3385

积分

管理员

积分
3385
QQ
 楼主| 发表于 2023-8-28 23:03:39 | 显示全部楼层
4、关键所在!!!执行编译时指定python版本,npm install --python=python2.7
0 v7 J( `& f% Y' p, P# G$ q0 q% r% I
. ^2 Q# i9 |. Z; l  X& ]由于我的电脑之前安装过python3版本,并且设置了环境变量,所以npm install会找我默认的python,所以执行时指定nodejs只支持的python2版本。5 r4 F, n& S; W
3 n' p7 `0 [1 ?) F7 {9 ]& a" p4 C3 u# P
然后,神奇的事情到了,我把编译包modules删掉后重新编译(这次不指定python2版本直接npm install),居然奇迹般的又没有报错!!!想不通。。。难道npm会将上次编译成功的配置保存下来??算了不纠结了哭泣!  ?4 _: }. m- D! z5 L8 b
————————————————
+ u6 f* P, t' s, u版权声明:本文为CSDN博主「一点一滴成长」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。! b7 p- \. s! B+ a* f0 H
原文链接:https://blog.csdn.net/qq_39946015/article/details/127351920
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-11-28 21:29 , Processed in 0.086565 second(s), 3 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.

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