Hi @danny-dainton I’ve just installed the latest version 1.21.0
I have the same error, unfortunately,
I think it could be a network related issue, as when I run it on my personal machine, it works. I’ve had a ticket open for several months on a similar issue where I can run a pack in Postman Desktop but not CLI,
CLI seems to be coming on leaps and bounds now, which is great to see. Just wish it had parity with the desktop.
Based on the symptoms you’re describing (works in Desktop on work machine, works on personal machine, but fails in CLI on work machine), this could be related to proxy environment variables.
Can you check the following on the machine which has the issue:
Check your no_proxy / NO_PROXY environment variable:
do you have anything configured ? are they accurate ?
Check your other proxy-related environment variables:
http_proxy, https_proxy, HTTP_PROXY, HTTPS_PROXY
What values are configured? are they accurate ?
Test with cURL from the same machine:
curl -v https://your-api-endpoint.com/your-path
Does this succeed or fail?
The CLI respects system environment variables by default, and if there’s a mismatch in proxy configuration, it could cause connectivity issues that might explain the behaviour you’re seeing.
Also, if you’re using a different proxy setup (instead of standard environment variables), please share some details as it might help us suggest the appropriate next steps.