Setting up PDK behind a proxy
If you are using PDK behind a proxy, you must set environment variables to enable PDK to communicate.
You can set these variables on the command line before each working session, or you can add them to your system configuration, which varies depending on the operating system.
On *nix or macOS systems, run:
export http_proxy="http://user:password@proxy.domain.com:port" export https_proxy="http://user:password@proxy.domain.com:port"
On Windows systems, run:
$env:http_proxy="http://user:password@proxy.domain.com:port" $env:https_proxy="http://user:password@proxy.domain.com:port"