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>
发表回复