代理的设置

notes:仅为个人笔记。

powershell:

$env:HTTP_PROXY="http://127.0.0.1:1080"

cmd:

set http_proxy=http://127.0.0.1:1080
方法二(powershell cmd 都可以):

set:
netsh winhttp set proxy 127.0.0.1:1080
reset:
netsh winhttp reset proxy
check:
netsh winhttp show proxy

java代码运行时走代理:
        System.setProperty("http.proxySet", "true");
        System.setProperty("http.proxyHost", "10.10.xxx.xxx");
        System.setProperty("http.proxyPort", "1080");
        System.setProperty("https.proxySet", "true");
        System.setProperty("https.proxyHost", "10.10.xxx.xxx");
        System.setProperty("https.proxyPort", "1080");
python代码运行时走代理:
    os.environ["http_proxy"] = "http://127.0.0.1:7890"
    os.environ["https_proxy"] = "http://127.0.0.1:7890"
pip install 设置代理:
pip install --proxy http://localhost:1080 openai

在容器内写本机实际ip, 不在可以直接写localhost or 127.0.0.1;当然在容器内也可以直接在系统级别设置代理,具体方法根据操作系统自行搜索。

你可能感兴趣的:(网络,其他)