Zeke Xiao

Zeke Xiao

github

各種ツールのプロキシ設定 - git、apt、pip、npm...

システム#

ファイル /etc/environment

http_proxy=http://127.0.0.1:3128
https_proxy=http://127.0.0.1:3128
all_proxy=http://127.0.0.1:3128

.bashrc

export http_proxy=http://127.0.0.1:1089
export https_proxy=http://127.0.0.1:1089
export all_proxy=http://127.0.0.1:1089

git#

git config --global https.proxy http://127.0.0.1:1089
git config --global https.proxy http://127.0.0.1:1089
git config --global http.proxy 'socks5://127.0.0.1:8889' 
git config --global https.proxy 'socks5://127.0.0.1:8889'
git config --global --unset http.proxy
git config --global --unset https.proxy

apt#

ファイル /etc/apt/apt.conf

Acquire::http::Proxy "http://127.0.0.1:1089";
Acquire::https::Proxy "http://127.0.0.1:1089";
Acquire::ftp::Proxy "http://127.0.0.1:1089";

一時的

sudo apt-get -o Acquire::http::proxy="http://127.0.0.1:1089/" install git

npm#

// ミラー
npm config set registry http://registry.cnpmjs.org

// プロキシ
npm config set proxy http://127.0.0.1:1089
npm confit set https-proxy http://127.0.0.1:1089
npm config delete proxy
npm config delete https-proxy

yarn#

yarn config set registry https://registry.npm.taobao.org
yarn config set proxy http://127.0.0.1:1089
yarn config set https-proxy http://127.0.0.1:1089
yarn config delete proxy
yarn config delete https-proxy

pip#

pip install --proxy='http://127.0.0.1:1089'
読み込み中...
文章は、創作者によって署名され、ブロックチェーンに安全に保存されています。