本文最后更新于 2025-07-18T14:23:45+08:00
CMD
1 2
| set http_proxy=http://127.0.0.1:7890 set https_proxy=http://127.0.0.1:7890
|
Powershell
1 2
| $env:http_proxy = "http://127.0.0.1:7890" $env:https_proxy = "http://127.0.0.1:7890"
|
Linux
1 2
| export http_proxy=http://127.0.0.1:7890 export https_proxy=http://127.0.0.1:7890
|
不同终端设置环境变量的方法
https://mengluo.com/2025/06/20/不同终端设置环境变量的方法/