1. 程式人生 > >webrtc或chromium的fetch和gclient報錯處理

webrtc或chromium的fetch和gclient報錯處理

報錯基本都是超時或者路由不到目地地址。

因為瀏覽器或者系統的代理設定,可能不會設定到git。具體的解決方法:

(1)設定socket的代理:

apt-get install polipo
polipo socksParentProxy=localhost:5678

(2)設定http的代理:

export http_proxy=127.0.0.1:1234
export https_proxy=127.0.0.1:1234

或者

git config --global http.proxy http://localhost:1234
git config --global https.proxy http://localhost:1234

其中5678埠或者1234埠,為實際的瀏覽器或者系統的代理設定埠。