我正在做一个MEAN堆栈(Mongo,Express,Angular,Node),我想使用Google的Material Design Lite库。根据the docs的说法,一个人应该运行
npm install material-design-lite --save
在NPM项目中使用mdl组件。我得到以下错误:
npm ERR! Failed at the material-design-lite@1.0.0 install script 'napa mojombo/clippy'.
npm ERR! This is most likely a problem with the material-design-lite package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! napa mojombo/clippy`所以napa mojombo/clippy有一个问题,有谁有办法解决这个问题吗?
发布于 2015-07-14 17:07:25
尝试使用verbose查找根本原因
npm install material-design-lite --save --verbose发布于 2015-07-20 21:33:57
npm install material-design-lite@1.0.0-3
这应该行得通,issue here
https://stackoverflow.com/questions/31402049
复制相似问题