npm版本与node版本不对应

npm与node版本不对应,导致无法npm i

报错提示

WARNING: You are likely using a version of node-tar or npm that is incompatible with this version of Node.js.ocks\staging-c39d1e5add322752.lock for G:\rn\zhr
Please use either the version of npm that is bundled with Node.js, or a version of npm (> 5.5.1 or < 5.4.0) or node-tar (> 4.0.1) that is compatible with Node.js 9 and above.

解决办法

  1. 首先从node官网下载了长支持版本node官网,可以直接安装,因为node自带了npm对应版本,当然我的情况比较复杂,如果没有解决往下看.
  2. 安装node的时候,提示没有安装权限,所以去找到安装目录发现,之前卸载的node还有个文件夹在哪里,但是没有权限删除,所以就使用cmd打开管理员模式,删除那个文件,然后再次安装就可以了,
  3. 安装完成后发现,npm版本还是之前的,没有自动更新,所以执行 npm uninstall npm -g 删除npm 然后 npm -g install [email protected] 安装指定版本即可

你可能感兴趣的:(知识小结)