npm install 出现chromedriver错误的解决

vue项目npm install 时出现[email protected] install: `node install.js`的错误

npm install 出现chromedriver错误的解决_第1张图片

刚开始以为是node版本过低或chromedriver未安装,结果重新更新node版本、安装chromedriver都不行。

原因:

1.某些版本下,chromedriver 的 zip 文件 url 的响应是 302 跳转,,在 install.js 里使用的是 Node.js 内置的 http 对象的 get 方法无法处理 302 跳转的情况;

2.googleFQ了

解决:

1. 安装cnpm ,npm install -g cnpm --registry=https://registry.npm.taobao.org,使用 cnpm install命令,不会报错

npm install 出现chromedriver错误的解决_第2张图片

2.执行npm install chromedriver --chromedriver_cdnurl=http://cdn.npm.taobao.org/dist/chromedriver

参考:

https://blog.csdn.net/nicexibeidage/article/details/79378425

https://blog.csdn.net/sleepwalker_1992/article/details/81461117

 

转载于:https://www.cnblogs.com/xfsmile/p/9713274.html

你可能感兴趣的:(运维,javascript,ViewUI)