0

我已经尝试擦除我的 node_modules 并重新安装,多次运行 npm rebuild,更改 Node 版本和 npm rebuild my_module_name --update-binary。没有任何效果。

编辑:这个包以前安装过并且可以工作。包链接与 Windows 兼容。它只是在一段时间没有运行脚本后停止工作。我尝试按照页面上的说明进行操作,并确保安装了最新版本的 Microsoft Visual C++ Redistributable。我仍然遇到同样的错误。

Error: The module './././**PATH**\node_modules\@nut-tree\nut-js\node_modules\opencv4nodejs-prebuilt\build\Release\opencv4nodejs.node'
was compiled against a different Node.js version using
NODE_MODULE_VERSION 79. This version of Node.js requires
NODE_MODULE_VERSION 93. Please try re-compiling or re-installing
the module (for instance, using `npm rebuild` or `npm install`)
4

1 回答 1

0

这表明您正在使用 Node 版本管理器或最近更新了您的 Node 版本,并且您的包的编译版本与您当前的 Node 版本不匹配。如果您使用的是 Node 版本管理器,请仔细检查您使用的 Node 版本是否正确。否则,您需要做的就是删除项目的node_modules文件夹,然后运行npm install​​.

于 2021-07-01T15:20:29.463 回答