hi
today we gonna see how to fix this error
curl: (6) Could not resolve host: postman-linux-x64.tar.gz
once trying to install postmen with
curl -L https://www.getpostman.com/app/downlo... -O postman-linux-x64.tar.gz
we can use rather this cmd
curl -L https://dl.pstmn.io/download/latest/l... -O postman-linux-x64.tar.gz
if that does not work so
instead curel we gonna use wget
wget -L https://dl.pstmn.io/download/latest/l... -O postman-linux-x64.tar.gz
ok solved
thnks