gpt4 book ai didi

node.js - Node 模块版本不匹配 : Expected 50

转载 作者:IT老高 更新时间:2023-10-28 23:15:02 27 4
gpt4 key购买 nike

我遇到了这个问题,从全新安装的 Node 和 npm 开始,serial port 包无法加载,Hello World Electron 包中出现以下错误:

enter image description here

我使用的是 Node 6.6.0 版、NPM 3.10.7 版和 OS X 10.11.6。

我查看了我是否过时了,但是查看了 this list ,我找不到任何模块版本为 50 的东西。这是一个错误吗?

我尝试过 npm rebuild,以及删除模块和重新安装,但没有骰子。

更新:即使我运行 node -v 它会打印 v6.6.0,在 Web 控制台中运行 process.versions.node给我 v6.5.0。这是怎么回事?

最佳答案

这是 known issue这是由 serialport 模块使用为不同版本的 Node.js 构建的 native 代码引起的。你可以阅读更多关于插件 here ,如果你有兴趣;它们只是用 C/C++ 编写的模块,可以与 Node 接口(interface),因此模块可以更轻松地与硬件接口(interface)。

该问题提出的解决方案是这样的:

npm rebuild --runtime=electron --target=1.2.5 --disturl=https://atom.io/download/atom-shell --build-from-source

如果您尚未安装 electron-rebuild,这可能有助于确保重建过程正常工作:

npm install --save-dev electron-rebuild

even though when I run node -v it prints v6.6.0, running process.versions.node in the web console gives me v6.5.0. What's going on here?

Electron 使用自己的 Node 版本,但未连接到您的系统 Node 安装(请参阅 homepage 以查看最新 Electron 使用的 Node 版本,或使用 process.versions.node,就像你在问题中所做的那样)。

您可以尝试使用旧版本(可能是 1.1.0,它使用 Chrome 50?),以防出现问题。

关于node.js - Node 模块版本不匹配 : Expected 50,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39547292/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com