windows下安装npm提示 Couldn't install optional dependency
安装了nodejs5.0,在windows命令行运行npm update,提示:
下安装npm提示:
$ npm update
npm WARN install Couldn't install optional dependency: Unsupported
这咋弄?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
转自http://stackoverflow.com/questions/34469823/npm-warn-install-couldnt-install-optional-dependency-unsupported
The warning message is just a warning message and not an error. It does not affect the application.
It is a log message that an optional dependency could not be installed because it is not supported/needed on your current platform/cpu-arch. For example the package fsevents is often used as optional dependency but fails on any system that is not a Mac.
To show what package is throwing this message, run
This warning could also be triggered by packages having an engine set to something lower than what you are running. You can try
to get around this