假设代理的协议为 http,地址为 127.0.0.1,端口为 10809。

那么,在不同系统下,配置命令行代理的方式如下:

  1. Unix 系统(Linux、macOS 等)

    1
    2
    export http_proxy=http://127.0.0.1:10809
    export https_proxy=http://127.0.0.1:10809
  2. Windows 系统

    • CMD

      1
      2
      set http_proxy=http://127.0.0.1:10809  
      set https_proxy=http://127.0.0.1:10809
    • PowerShell

      1
      2
      $env:http_proxy = "http://127.0.0.1:10809"  
      $env:https_proxy = "http://127.0.0.1:10809"
    • Git Bash:与 Unix 系统一样

      1
      2
      export http_proxy=http://127.0.0.1:10809
      export https_proxy=http://127.0.0.1:10809