npm WARN notsup Unsupported engine for node-gyp@9.4.0: wanted: {"node":"^12.13 || ^14.13 || >=16"} (current: {"node":"13.14.0","npm":"6.14.4"}) npm WARN notsup Not compatible with your version of node/npm: node-gyp@9.4.0 npm WARN notsup Unsupported engine for npmlog@6.0.2: wanted: {"node":"^12.13.0 || ^14.15.0 || >=16.0.0"} (current: {"node":"13.14.0","npm":"6.14.4"}) npm WARN notsup Not compatible with your version of node/npm: npmlog@6.0.2 npm WARN notsup Unsupported engine for nopt@6.0.0: wanted: {"node":"^12.13.0 || ^14.15.0 || >=16.0.0"} (current: {"node":"13.14.0","npm":"6.14.4"}) npm WARN notsup Not compatible with your version of node/npm: nopt@6.0.0
时间: 2023-08-07 07:12:53 浏览: 2157
这些警告是由于你的 Node.js 版本与依赖包所需的引擎版本不兼容所导致的。警告中显示了每个包所需的引擎版本范围和当前的 Node.js 版本。
在你的情况下,你的 Node.js 版本为 13.14.0,而这些包需要的版本范围为 "12.13.0" 或 "14.15.0" 或 ">=16.0.0"。所以你可以考虑升级你的 Node.js 版本以满足这些依赖包的需求。
如果你已经安装了 nvm(Node Version Manager),你可以使用以下命令安装 Node.js 的新版本:
```
nvm install 14
```
然后使用以下命令切换到新安装的版本:
```
nvm use 14
```
然后再次运行 npm install 命令,应该就不会再出现这些警告了。
相关问题
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@2.3.2: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"}) npm WARN notsup Unsupported engine for yargs-parser@21.1.1: wanted: {"node":">=12"} (current: {"node":"10.24.0","npm":"6.14.11"}) npm WARN notsup Not compatible with your version of node/npm: yargs-parser@21.1.1 npm WARN notsup Unsupported engine for npmlog@6.0.2: wanted: {"node":"^12.13.0 || ^14.15.0 || >=16.0.0"} (current: {"node":"10.24.0","npm":"6.14.11"}) npm WARN notsup Not compatible with your version of node/npm: npmlog@6.0.2 npm WARN notsup Unsupported engine for are-we-there-yet@3.0.1: wanted: {"node":"^12.13.0 || ^14.15.0 || >=16.0.0"} (current: {"node":"10.24.0","npm":"6.14.11"}) npm WARN notsup Not compatible with your version of node/npm: are-we-there-yet@3.0.1 npm WARN notsup Unsupported engine for gauge@4.0.4: wanted: {"node":"^12.13.0 || ^14.15.0 || >=16.0.0"} (current: {"node":"10.24.0","npm":"6.14.11"}) npm WARN notsup Not compatible with your version of node/npm: gauge@4.0.4
这些警告是由于您正在使用的软件包需要特定的操作系统和Node.js版本,但您当前的操作系统和Node.js版本与软件包要求不匹配,因此npm会发出警告。这些警告不会影响软件包的安装,但在运行时可能会导致问题。要解决这些警告,您可以尝试更新Node.js版本或使用软件包支持的操作系统版本。您也可以尝试安装软件包的先前版本,该版本可能与您的操作系统和Node.js版本兼容。
npm WARN notsup Not compatible with your version of node/npm: yargs@17.5.1 npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@~2.3.2 (node_modules/@frangoteam/fuxa/node_modules/chokidar/node_modules/fsevents): npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@2.3.2: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"}) npm WARN notsup Unsupported engine for yargs-parser@21.1.1: wanted: {"node":">=12"} (current: {"node":"10.24.0","npm":"6.14.11"}) npm WARN notsup Not compatible with your version of node/npm: yargs-parser@21.1.1 npm WARN notsup Unsupported engine for npmlog@6.0.2: wanted: {"node":"^12.13.0 || ^14.15.0 || >=16.0.0"} (current: {"node":"10.24.0","npm":"6.14.11"}) npm WARN notsup Not compatible with your version of node/npm: npmlog@6.0.2 npm WARN notsup Unsupported engine for are-we-there-yet@3.0.1: wanted: {"node":"^12.13.0 || ^14.15.0 || >=16.0.0"} (current: {"node":"10.24.0","npm":"6.14.11"}) npm WARN notsup Not compatible with your version of node/npm: are-we-there-yet@3.0.1 npm WARN notsup Unsupported engine for gauge@4.0.4: wanted: {"node":"^12.13.0 || ^14.15.0 || >=16.0.0"} (current: {"node":"10.24.0","npm":"6.14.11"}) npm WARN notsup Not compatible with your version of node/npm: gauge@4.0.4
这段信息是 npm 给出的警告信息,表示某些依赖包不兼容你当前使用的 node.js 和 npm 版本。其中最常见的警告是 "not compatible with your version of node/npm",这意味着你需要升级 node.js 和/或 npm 版本来解决这些警告。你可以通过运行 "node -v" 和 "npm -v" 命令来查看当前的 node.js 和 npm 版本。如果你想解决这些警告,可以尝试升级你的 node.js 和 npm 版本,或者升级依赖包的版本以适配你当前的 node.js 和 npm 版本。
阅读全文