淘先锋技术网

首页 1 2 3 4 5 6 7

【现象】

C:\Users\Administrator>npm -v
npm WARN cli npm v9.1.2 does not support Node.js v14.12.0. You should probably upgrade to a
npm WARN cli newer version of node as we can't make any promises that npm will work with this
npm WARN cli version. This version of npm supports the following node versions: `^14.17.0 ||
npm WARN cli ^16.13.0 || >=18.0.0`. You can find the latest version at https://nodejs.org/.
9.1.2

【原因分析】

npm版本跟node版本不对应,例如这个高于node版本,一般是如下几个原因:

1.来回安装node版本,node没有卸载干净,安装旧版本时会出现这问题

2.安装node后,单独对npm升级过

【解决方法】

1.来回安装node版本,node没有卸载干净,安装旧版本时会出现这问题

解决方法:安装npm对应的node版本后,安装后,通过npm uninstall -g npm回到node默认的npm版本,再卸载node就能卸载干净了。

2.安装node后,单独对npm升级过

执行npm uninstall -g npm命令。