
Installing postman in Linux Postman is the most popular tool among developers and testers. Today we are going to see how we can install postman in Linux. (I am using CentOS here, commands may somewhat differ for other Linux flavors) Download the postman zip file. https://www.postman.com/downloads/ Open up a terminal and navigate to Downloads directory. $ cd Downloads/ Extract the downloaded zip $ tar -xzf Postman-linux-x64-7.33.1.tar.gz Create a apps directory under /opt. $ sudo mkdir -p /opt/apps/ Move the extracted Postman folder to above /opt/apps/ directory $ sudo mv Postman /opt/apps/ Create symlink to access the postman with command $ sudo ln -s /opt/apps/Postman/Pos...