首页 > 其他分享 >9-15|报错信息

9-15|报错信息

时间:2023-09-15 10:37:07浏览次数:54  
标签:node 15 ERR gyp 信息 报错 error 1458 find

1448 verbose stack at maybeClose (node:internal/child_process:1093:16)

1448 verbose stack at Process.ChildProcess._handle.onexit (node:internal/child_process:302:5) 1449 verbose pkgid lz4@0.6.5 1450 verbose cwd E:\test_yun_fun\code 1451 verbose Windows_NT 10.0.19041 1452 verbose node v16.17.0 1453 verbose npm v8.15.0 1454 error code 1 1455 error path E:\test_yun_fun\code\node_modules\lz4 1456 error command failed 1457 error command C:\Windows\system32\cmd.exe /d /s /c C:\Users\ADMINI~1\AppData\Local\Temp\install-72e4d281.cmd 1458 error gyp info it worked if it ends with ok 1458 error gyp info using node-gyp@9.0.0 1458 error gyp info using node@16.17.0 | win32 | x64 1458 error gyp info find Python using Python version 3.6.8 found at "D:\soft\python3.6.8\python.exe" 1458 error gyp ERR! find VS 1458 error gyp ERR! find VS msvs_version not set from command line or npm config 1458 error gyp ERR! find VS VCINSTALLDIR not set, not running in VS Command Prompt 1458 error gyp ERR! find VS could not use PowerShell to find Visual Studio 2017 or newer, try re-running with '--loglevel silly' for more details 1458 error gyp ERR! find VS looking for Visual Studio 2015 1458 error gyp ERR! find VS - not found 1458 error gyp ERR! find VS not looking for VS2013 as it is only supported up to Node.js 8 1458 error gyp ERR! find VS 1458 error gyp ERR! find VS ************************************************************** 1458 error gyp ERR! find VS You need to install the latest version of Visual Studio 1458 error gyp ERR! find VS including the "Desktop development with C++" workload. 1458 error gyp ERR! find VS For more information consult the documentation at: 1458 error gyp ERR! find VS https://github.com/nodejs/node-gyp#on-windows

1458 error gyp ERR! find VS ************************************************************** 1458 error gyp ERR! find VS 1458 error gyp ERR! configure error 1458 error gyp ERR! stack Error: Could not find any Visual Studio installation to use 1458 error gyp ERR! stack at VisualStudioFinder.fail (D:\soft\nvm\v16.17.0\node_modules\npm\node_modules\node-gyp\lib\find-visualstudio.js:122:47) 1458 error gyp ERR! stack at D:\soft\nvm\v16.17.0\node_modules\npm\node_modules\node-gyp\lib\find-visualstudio.js:75:16 1458 error gyp ERR! stack at VisualStudioFinder.findVisualStudio2013 (D:\soft\nvm\v16.17.0\node_modules\npm\node_modules\node-gyp\lib\find-visualstudio.js:363:14) 1458 error gyp ERR! stack at D:\soft\nvm\v16.17.0\node_modules\npm\node_modules\node-gyp\lib\find-visualstudio.js:71:14 1458 error gyp ERR! stack at D:\soft\nvm\v16.17.0\node_modules\npm\node_modules\node-gyp\lib\find-visualstudio.js:384:16 1458 error gyp ERR! stack at D:\soft\nvm\v16.17.0\node_modules\npm\node_modules\node-gyp\lib\util.js:54:7 1458 error gyp ERR! stack at D:\soft\nvm\v16.17.0\node_modules\npm\node_modules\node-gyp\lib\util.js:33:16 1458 error gyp ERR! stack at ChildProcess.exithandler (node:child_process:408:5) 1458 error gyp ERR! stack at ChildProcess.emit (node:events:513:28) 1458 error gyp ERR! stack at maybeClose (node:internal/child_process:1093:16) 1458 error gyp ERR! System Windows_NT 10.0.19041 1458 error gyp ERR! command "D:\\soft\\nodejs\\node.exe" "D:\\soft\\nvm\\v16.17.0\\node_modules\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild" 1458 error gyp ERR! cwd E:\test_yun_fun\code\node_modules\lz4 1458 error gyp ERR! node -v v16.17.0 1458 error gyp ERR! node-gyp -v v9.0.0 1458 error gyp ERR! not ok 1459 verbose exit 1 1460 timing npm Completed in 18939ms 1461 verbose unfinished npm timer reify 1694661887595 1462 verbose unfinished npm timer reify:build 1694661904493 1463 verbose unfinished npm timer build 1694661904493 1464 verbose unfinished npm timer build:deps 1694661904494 1465 verbose unfinished npm timer build:run:install 1694661904524 1466 verbose unfinished npm timer build:run:install:node_modules/lz4 1694661904524 1467 verbose code 1 1468 error A complete log of this run can be found in: 1468 error C:\Users\Administrator\AppData\Local\npm-cache\_logs\2023-09-14T03_24_47_471Z-debug-0.log npm install 报错


当然可以。


你遇到的错误提示建议在尝试为Node.js编译本地插件时,因为你的机器上没有必要的Visual Studio工具,所以出现了问题。


错误信息是:

```

你需要安装最新版本的Visual Studio,包括"桌面C++开发"工作负载。

```


为了解决这个问题:


1. **安装Visual Studio**:如果你还没有安装,下载并安装[Visual Studio](https://visualstudio.microsoft.com/zh-hans/)。你不需要完整的IDE,只需要构建工具。


2. **桌面开发与C++工作量**:在安装或修改Visual Studio时,确保选择"桌面开发与C++"工作负载。这确保你有编译C++代码所需的必要编译器和库,这通常是某些Node.js本地模块所必需的。


3. **Windows构建工具**:如果你不想安装完整的Visual Studio IDE,你可以只安装构建工具。以管理员权限打开命令提示符并运行:

  ```bash

  npm install --global windows-build-tools

  ```

  这将安装所需的构建工具,包括Python和Visual Studio构建工具。注意,这可能需要一段时间,并需要一定的磁盘空间。


4. **Python版本**:错误日志还提到了特定的Python版本(3.6.8)。虽然这不应该是一个问题,但某些`node-gyp`版本可能期望Python 2.7。如果在修复Visual Studio依赖关系后遇到与Python相关的问题,你可能需要考虑安装Python 2.7并将其添加到PATH中。


5. **重新运行`npm install`**:安装必要的工具后,返回到项目目录并尝试再次运行`npm install`。


总的来说,当在Windows上使用Node.js的本地模块时,安装正确的构建工具是很重要的,因为它们通常需要从C++编译到与Node.js兼容的二进制格式。

标签:node,15,ERR,gyp,信息,报错,error,1458,find
From: https://blog.51cto.com/wusen/7477993

相关文章

  • bbed处理ORA-01578---惜分飞
    联系:手机/微信(+8617813235971)QQ(107644445)标题:bbed解决ORA-01578作者:惜分飞©版权所有[未经本人同意,不得以任何形式转载,否则有进一步追究法律责任的权利.]业务报ORA-01578坏块,无法正常使用,alert日志报错如下Readingdatafile'/data/u01/ZLDOCXML01.DBF'for......
  • java的jdbc插入的时候,遇到null情况报错问题
    分析原因:在执行SQL时MyBatis会自动通过对象中的属性给SQL中参数赋值,它会自动将Java类型转换成数据库的类型。而一旦传入的是null它就无法准确判断这个类型应该是什么,就有可能将类型转换错误,从而报错。解决办法:参数增加jdbcType标识数据类型。(注意:这时候参数{}前统一用#)<inser......
  • 本机hadoop version命令报错--JAVA_HOME is not set问题的解决
    问题描述输入hadoopversion命令显示JAVA_HOME没有配置,但是本机的jdk配置正常!问题解决编辑hadoop/etc/hadoop目录下的hadoop-env.cmd文件:将JAVA_HOME的值换成本机的绝对路径;保存退出,再次尝试:......
  • QSqlTableModel.insertRecord()报错"No Fields to update"解决记录 && QField构造
    问题的出现当我想向一个Table中插入一条记录时,我本能的想的是:QSqlTableModel是由一条一条的Record组成的,那么我先创建一个Record,并且赋予对应的值,然后再使用QSqlTableModel::insertRecord()插入就好了,代码如下:QSqlRecordrcd;rcd.remove(model->fieldIndex("id"));rcd.setValu......
  • 报错:go: go.mod file not found in current directory or any parent directory; see
    报错:go:go.modfilenotfoundincurrentdirectoryoranyparentdirectory;see'gohelpmodules'知识补充:......
  • 使用datagrip连接Phoenix,涉及到一些方法和报错解决
    使用datagrip连接Phoenix,涉及到一些方法和报错解决Datagrip作为Hadoop的一个sql可视化工具,可以连接hive2,以及Phoenix(hbase的一个底层sql文件编写的终端),今天就先介绍如何用datagrip连接phoenStep1.首先进入虚拟机检查hdfs,zookeeper和hbase是否打开,正常打开成功有以下进程 2.......
  • Windows域控信息导出用户信息
    AD域控导出用户信息1、你要有域控的权限才可以操作2、Get-ADGroupMember-identity"用户所在的域控组"|get-aduser-Properties*|selectname,mail|Export-csv-pathD:\1.csv-NoTypeInformation(-path后面是导出文件的路径)3、selectnamemail等是需要导出的信息。查......
  • day15
    实质上是求1的个数 一般是先调用基类的构造函数,然后调用对象的构造函数,最后调用派生类的构造函数抽象类里面可以有抽象方法和非抽象方法如果类里面有抽象方法,那么类一定要声明为抽象的  对于二维数组,数组首地址为a,则a+i表示第i行首地址。*(a+i)表示第i......
  • 零数科技获国家信息中心旗下国信中数B2轮战略投资
    零数科技获国家信息中心旗下国信中数B2轮战略投资 近日,零数科技完成B2轮融资,此次投资方系国家信息中心旗下北京国信中数投资管理有限公司。零数科技创始人兼CEO林乐博士表示,此次融资是零数科技继B1轮浦东科创母基金投资之后的新一轮融资。本轮融资将主要用于推动产品创新、市场营......
  • react中useEffect使用async await报错
    错误代码一:useEffect(async()=>{ awaitmyFunc();},[])constmyFunc=async()=>{...};错误代码二:useEffect(()=>myFunc(),[])constmyFunc=async()=>{...};以上写法在打开页面时正常显示,但是当从该页面返回上一页时报错,如下:原因要知道,useEffect钩子函数的一个......