windows终端代理设置

1.command 


set http_proxy=http://127.0.0.1:1080  
set https_proxy=http://127.0.0.1:1080  

2. powershell

$env:http_proxy="http://127.0.0.1:1080"
$env:https_proxy="http://127.0.0.1:1080"

猜你喜欢

转载自blog.csdn.net/qq_35576225/article/details/108534454