**npm ERR!** code EBADPLATFORM
**npm ERR!** notsup Unsupported platform for inotify@1.4.2: wanted {"os":"linux","arch":"any"} (current: {"os":"darwin","arch":"x64"})
**npm ERR!** notsup Valid OS: linux
**npm ERR!** notsup Valid Arch: any
**npm ERR!** notsup Actual OS: darwin
**npm ERR!** notsup Actual Arch: x64
如何解决“inotify@1.4.2 平台不支持”
IT技术
node.js
reactjs
2021-05-26 04:17:35
3个回答
这可能是由于与 npm 一起安装的 dev 包,这个问题通常发生在 Mac OS 上。
运行以下命令以删除 dev 包。
npm uninstall dev --save
我希望我能够帮助回答这个问题。
我使用 nom 遇到了同样的错误,但我尝试使用 Yarn,它奏效了。
$ npm i dev jest
npm WARN deprecated istanbul-lib-hook@1.2.1: 1.2.0 should have been a major version bump
npm ERR! code EBADPLATFORM
npm ERR! notsup Unsupported platform for inotify@1.4.2: wanted {"os":"linux","arch":"any"} (current: {"os":"darwin","arch":"x64"})
npm ERR! notsup Valid OS: linux
npm ERR! notsup Valid Arch: any
npm ERR! notsup Actual OS: darwin
npm ERR! notsup Actual Arch: x64
但后来我尝试用纱线
$ yarn add --dev jest
这可能没有解决 npm 的问题,但它为我解决了这个错误