How to install postman client in ubuntu 16.04

How to install postman client in ubuntu 16.04 Here is the code by which you can download latest file and install. You have no need to download file from Postman official site. just run following commands on terminal and you will get latest postman client

wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz
sudo tar -xzf postman.tar.gz -C /opt
rm postman.tar.gz
sudo ln -s /opt/Postman/Postman /usr/bin/postman


After run above commands run one last command that will show you in search panel
cat > ~/.local/share/applications/postman.desktop < 

Comments