npm install 时总是报phantomjs-prebuilt@2.1.14安装失败

来源:互联网 发布:怎么卸载还原软件 编辑:程序博客网 时间:2024/05/29 12:49

npm install 时报错

Please report this full log at https://github.com/Medium/phantomjs
npm WARN karma-sinon-chai@1.3.2 requires a peer of sinon@^2.1.0 but none was installed.


npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! phantomjs-prebuilt@2.1.15 install: `node install.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the phantomjs-prebuilt@2.1.15 install script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.


npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\YGNET\AppData\Roaming\npm-cache\_logs\2017-10-18T06_03_15_868Z-debug.log

解决方法:最后通过以下命令安装成功

npm install phantomjs-prebuilt@2.1.14 --ignore-scripts

相关参考资料

http://stackoverflow.com/questions/40992231/failed-at-the-phantomjs-prebuilt2-1-13-install-script-node-install-js



阅读全文
0 0