技术笔记windowswindwos下powershell设置代理Xtong2021-08-262025-01-05powershell12# 当前 shell 的代理$env:HTTP_PROXY="http://127.0.0.1:7890" cmd1set http_proxy=http://127.0.0.1:1080 其他补充在 macOS 或 Linux 下 1export https_proxy=http://127.0.0.1:7890 http_proxy=http://127.0.0.1:7890 all_proxy=socks5://127.0.0.1:7890 参考资料 powershell 设置代理