终端设置 HTTP 代理

Windows CMD:

set http_proxy=http://<porxyAddress>:<port>
set https_proxy=http://<proxyAddress>:<port>

PowerShell:

$env:http_proxy="http://<proxyAddress>:<port>"
$env:https_proxy="http://<proxyAddress>:<port>"

Bash:

export http_proxy=http://<proxyAddress>:<port>
export https_proxy=http://<proxyAddress>:<port>

已发布

分类

来自

标签:

评论

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注