Skip to content

Instantly share code, notes, and snippets.

@okwareddevnest
Created October 28, 2022 21:38
Show Gist options
  • Save okwareddevnest/42534749505ef83b8849138fe23c3d20 to your computer and use it in GitHub Desktop.
Save okwareddevnest/42534749505ef83b8849138fe23c3d20 to your computer and use it in GitHub Desktop.

Since Chrome apps are now being deprecated. Download postman from https://dl.pstmn.io/download/latest/linux

Although I highly recommend using a snap

sudo snap install postman

Installing Postman

tar -xzf Postman-linux-x64-<version>.tar.gz

If any version is installed before, remove it.

sudo rm -rf /opt/Postman

Move Postman

sudo mv Postman /opt/Postman

Create a symbolic link

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

Create a desktop file

cat > ~/.local/share/applications/postman.desktop <<EOL
[Desktop Entry]
Encoding=UTF-8
Name=Postman
Exec=postman
Icon=/opt/Postman/resources/app/assets/icon.png
Icon=/opt/Postman/app/resources/app/assets/icon.png
Terminal=false
Type=Application
Categories=Development;
EOL

Remove the tar:

rm Postman-linux-x64-<version>.tar.gz
@okwareddevnest
Copy link
Author

okwareddevnest commented Oct 28, 2022

This will help you successfully install Postman

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment