2017-04-05 156 views
1

我想安裝使用npm的chromedriver,我在我的公司代理。我看到以下錯誤。Chrome驅動器安裝失敗代理

這是我做的,到目前爲止

  1. 我已經把我像 NPM配置設置代理http://proxy.na.xxxxx.com:8080 NPM配置設置代理的代理配置http://proxy.na.xxxxx.com

  2. 我清除了緩存 NPM配置刪除代理

  3. npm install chromedriver --ignore_ssl

沒有他們的幫助


ChromeDriver installation failed Error with http request: { 'cache-control': 'no-cache', 
    pragma: 'no-cache', 
    'content-type': 'text/html; charset=utf-8', 
    'proxy-connection': 'close', 
    connection: 'close', 
    'content-length': '727' } 
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected]^1.0.0 (node_modules\chokidar\node_modules\fsevents): 
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"}) 
npm WARN [email protected] No license field. 
npm ERR! Windows_NT 6.1.7601 
npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Users\\#####\\AppData\\Roaming\\npm\\node_modules\\npm\\bin\\npm-cli.js" "install" "chromedriver" 
npm ERR! node v6.9.2 
npm ERR! npm v4.0.5 
npm ERR! code ELIFECYCLE 

npm ERR! [email protected] install: `node install.js` 
npm ERR! Exit status 1 
npm ERR! 
npm ERR! Failed at the [email protected] install script 'node install.js'. 
npm ERR! Make sure you have the latest version of node.js and npm installed. 
npm ERR! If you do, this is most likely a problem with the chromedriver package, 
npm ERR! not with npm itself. 
npm ERR! Tell the author that this fails on your system: 
npm ERR!  node install.js 
npm ERR! You can get information on how to open an issue for this project with: 
npm ERR!  npm bugs chromedriver 
npm ERR! Or if that isn't available, you can get their info via: 
npm ERR!  npm owner ls chromedriver 

回答

1

試試這個:

npm install [email protected] --chromedriver-cdnurl=http://chromedriver.storage.googleapis.com 

模塊具體cdnurl與HTTP(而不是HTTPS)選項(chromedriver-cdnurl)將解決在某些企業代理環境中發生了嚴重的ca認證檢查問題。