Install Latest Postman on Ubuntu 18.04, 20.04

Install Postman Manually 

As we know in Ubuntu if you try to install postman from the snap store you will find an old version of the postman. We will see how to install the latest postman version in our Ubuntu 18.04



Step1: Download the latest version


Step 2: extract on the current folder

Step 3: Open in terminal and move file opt folder

             sudo mv Postman /opt/Postman

Step 4 :

            sudo ln -s /opt/Postman/Postman /usr/bin/postman

Step 5 : copy and paste following snipped on terminal

cat > ~/.local/share/applications/postman.desktop <<EOL
[Desktop Entry]
Name=postman
Comment=Version Control Tool
Exec=/opt/Postman/Postman
Terminal=false
Type=Application
Icon=/opt/Postman/app/resources/app/assets/icon.png
MimeType=application/vnd.mysql-workbench-model;
Categories=GTK;Database;Development;
EOL

Step 6: Your done search for the postman and launch it.






Comments