PS C:\Users\liuxing>npminstall-g n
npm ERR! code EBADPLATFORM
npm ERR! notsup Unsupported platform for n@9.0.0: wanted {"os":"!win32","arch":"any"}(current: {"os":"win32","arch":"x64"})npm ERR! notsup Valid OS: !win32
npm ERR! notsup Valid Arch: any
npm ERR! notsup Actual OS: win32
npm ERR! notsup Actual Arch: x64
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\liuxing\AppData\Roaming\npm-cache\_logs\2022-11-03T09_24_21_102Z-debug.log
Mac 或 Linux系统
升级方法:以下命令如果提示没权限,请在命令的前面加上sudo,如sudo npm install n -g
先清除npm缓存:
npm cache clean -f
安装node版本管理工具n;
npminstall n -g
查看node 所有版本
npm view node versions
升级node版本
# 升级到指定的版本:n 版本号
n 16.0.0
# 升级到最新的稳定版本
n stable
# 升级到最新版本,不推荐
n latest