不同环境配置临时设置环境变量
CMD
set http_proxy=http://127.0.0.1:7890
set https_proxy=http://127.0.0.1:7890
Powershell
$env:http_proxy = "http://127.0.0.1:7890"
$env:https_proxy = "http://127.0.0.1:7890"
Linux
export http_proxy=http://127.0.0.1:7890
export https_proxy=http://127.0.0.1:7890
11 0
评论 (0)
请先登录后再评论
暂无评论