0

尝试安装 VueJs 项目时来自 fsevents 的普通错误。

我正在使用 Windows 10 作为开发平台

我尝试了几种替代方案,但均未成功。

npm install --no-optional(不工作)

npm install -f(不工作)

在这种情况下,它不仅仅是一个警告信息。发出一个错误,它没有完成完整代码的编译,服务器“npm run serving”没有启动

有人可以帮忙吗?

npm ERR! code EBADPLATFORM
npm ERR! notsup Unsupported platform for fsevents@2.1.2: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","a
rch":"x64"})
npm ERR! notsup Valid OS:    darwin
npm ERR! notsup Valid Arch:  any
npm ERR! notsup Actual OS:   win32
npm ERR! notsup Actual Arch: x64
4

1 回答 1

0

将以下内容添加到package.json

"optionalDependencies": {
    "fsevents": "1.2.12"
  },
于 2020-04-13T21:40:47.733 回答