npm ERR! code EBADPLATFORM npm ERR! notsup Unsupported platform for n@9.1.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\clt\AppData\Roaming\npm-cache\_logs\2023-06-01T03_29_17_720Z-debug.log
时间: 2023-09-23 22:06:32 浏览: 352
$ npm install -g truffle npm ERR! code EEXIST错误解决方法
这个错误提示是因为你在 Windows 系统上使用了 n@9.1.0 这个版本的 npm 包,但是这个版本的 npm 包不支持 Windows 系统。你可以尝试更新 npm 包到最新版本,或者使用支持 Windows 系统的旧版本 npm 包。如果你需要使用特定版本的 npm 包,可以在安装时指定支持当前系统的版本。另外,你可以查看路径 `C:\Users\clt\AppData\Roaming\npm-cache\_logs\2023-06-01T03_29_17_720Z-debug.log` 中的日志文件,以了解更多详细信息。
阅读全文