Arc*_*hit 5 macos npm node-modules reactjs
我正在尝试建立一个反应项目。但是,当我运行 npm install 时,它会抛出此错误:
npm ERR! code EBADPLATFORM
npm ERR! notsup Unsupported platform for inotify@1.4.6: 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
Run Code Online (Sandbox Code Playgroud)
显然,我的 Mac 似乎不支持这个库。我希望一些解决方法可以解决这个问题,而不是删除这个库。请建议我如何解决这个问题。
从这里窃取答案:https ://stackoverflow.com/a/59159117/10431460
只需运行此命令就可以解决我的问题:
npm uninstall dev --save
Run Code Online (Sandbox Code Playgroud)