was compiled against a different Nodejs version usingNODE_MODULE_VERSION 93 This version of Nodejs requiresNODE_MODULE_VERSION 109 Please try re-compiling or re-installing
the module in question with the version of Node.js you are currently using.
This error message typically occurs when you are trying to use a binary module that was built for a different version of Node.js than the one you are currently using. In order to resolve the issue, you will need to either re-compile the module using the version of Node.js you are currently using, or install a version of the module that is compatible with your version of Node.js.
To re-compile the module, you will need to have the necessary build tools installed on your system. This will typically include a C++ compiler and Python, as well as any dependencies required by the module. Once you have the necessary tools installed, you can typically re-compile the module by running a command like the following:
npm rebuild
Alternatively, you may be able to find an updated version of the module that is compatible with your version of Node.js by searching for it on the npm registry. You can typically install the updated module by running a command like the following:
npm install <module_name>
Be sure to specify the name of the module you are trying to install in place of <module_name>
原文地址: https://www.cveoy.top/t/topic/fHOF 著作权归作者所有。请勿转载和采集!