我是Angular的新手,在安装node和npm后尝试运行"npm install -g @angular/cli"
。执行此命令时出现错误:
"npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.3: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})"
无法识别ng
命令。
节点版本为8.11.1,npm版本为4.1.2。
答案 0 :(得分:2)
fs-events
是可选的,在Windows平台上不相关。
如果你想跳过它:
npm install --no-optional
似乎这是一个常见问题(https://github.com/npm/npm/issues/14042)没有好的解决方案,除了忽略它或跳过它。