问题

在安装node 管理工具 n 报错

1
2
3
4
5
6
7
8
9
10
# 执行命令
npm i n -g

# 错误信息
npm ERR! code EBADPLATFORM
npm ERR! notsup Unsupported platform for n@7.5.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

错误信息图片 ↓
{"os":"!win32","arch":"any"} (current: {"os":"win32","arch":"x64"})

解决方案

1
2
# 增加强制执行命令 --force
npm i n -g --force