Skip to content

Instantly share code, notes, and snippets.

@prrao87
Last active April 27, 2025 17:01
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;
@Moises-Emiliano-Hernandez-Contreras

nice, thanks!!

@cbag1
Copy link

cbag1 commented Oct 4, 2024

Nice !
Thanks !

@MirobidKobilov
Copy link

Cool!

@nbow2
Copy link

nbow2 commented Nov 25, 2024

thx it working mint 22

@jsacra2003
Copy link

You are the GOAT!!!

@Adeegithub
Copy link

Thanks A Heap mate! Works on Linux Mint 22 Cinnamon.

@Rizki24-star
Copy link

works!!

@aleksa-kuzman
Copy link

aleksa-kuzman commented Jan 8, 2025

If you want you could enable snap by removing /etc/apt/preferences.d/nosnap.pref . I do not like snap, but you can do it if you want

@pratiksingh94
Copy link

ay my boi love you fr

@pxycknomdictator
Copy link

pxycknomdictator commented Feb 23, 2025

It worksThanks a lot man :)

@DanielTrindade
Copy link

thanks man, helped me a lot.

@MehdiGolzar
Copy link

Thanks man, that was very straightforward.

@ktm72
Copy link

ktm72 commented Apr 7, 2025

If someone wants to install an older version due to compatibility issues, change the wget URL to -
wget https://dl.pstmn.io/download/version/your_version_number/linux64 -O postman.tar.gz

Linux Mint 20 worked on postman-v7.36.7, v9.x.x crashes.

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