Skip to content

Instantly share code, notes, and snippets.

@prrao87
Last active May 17, 2024 08:13
Show Gist options
  • Save prrao87/114933c4638a4f77aa3d4b2c5a3b2477 to your computer and use it in GitHub Desktop.
Save prrao87/114933c4638a4f77aa3d4b2c5a3b2477 to your computer and use it in GitHub Desktop.
Install Postman on Linux Mint (without using snap)

Goal

Postman is a usefull app to build and test APIs, most commonly installed on ubuntu-like systems via snap. On recent distributions of Linux Mint (20 and above), snap installs are no longer possible. The instructions below show how to install Postman via the terminal.

Download Postman

$ wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz

Extract archive

$ sudo tar -xzf postman.tar.gz -C /opt

Make symlink

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

Optional: Remove downloaded file

$ rm postman.tar.gz

Make Desktop icon

$ sudo vim /usr/share/applications/postman.desktop

[Desktop Entry]
Type=Application
Name=Postman
Icon=/opt/Postman/app/resources/app/assets/icon.png
Exec="/opt/Postman/Postman"
Comment=Postman Desktop App
Categories=Development;Code;
@manucabello
Copy link

Works on Linux Mint 21.3 Cinnamon in February 2024. Thanks!

@Jekahome
Copy link

Jekahome commented Mar 1, 2024

Thanks. it's worked for me

@ralphsbaesso
Copy link

Thanks!!!

@rizkyhaksono
Copy link

Thanks! <3

@lcarlosilva
Copy link

it's worked for me on ubuntu 22.04.4 LTS.
Thanks man!
<3

@RafaelJCamara
Copy link

It worked for me!
Linux Mint 21.3

Thanks!

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