I wanted to make a post about this because I could not find one and I had some trouble getting set up. I have taken the below steps from the following guide and copied out the answer that was most helpful to me. Once all steps are completed you will have an icon under Linux Apps to easily launch Postman.
Steps:
Get the files
- Downlad the Postman from https://www.postman.com/downloads/
- Move the downloaded zip to a location inside linux files
- Open up the linux terminal and navigate to where you put the zip
- Run
tar -xvf Postman-linux-x64-7.24.0.tar.gz
- Run
sudo apt install libnss3
- You can run the app already (without the icon) with
./Postman/app/Postman
Make folder
- create the folder .share (if you don’t already have it) `mkdir ~/.local’
- a folder inside of that folder
mkdir ~/.local/share
- another folder…
mkdir ~/.local/share/applications
Create the shortcut file
- Open Caret (you can use any other text edit application, but I like this one)
- add the following text
(make sure to change the YOURUSERNAME to your actual username; you can usepwd
to find out how it’s actually spelled):
[Desktop Entry]
Encoding=UTF-8
Name=Postman
Exec=/home/**YOURUSERNAME**/Postman/app/Postman %U
Icon=/home/**YOURUSERNAME**/Postman/app/resources/app/assets/icon.png
Terminal=false
Type=Application
Categories=Development;
- Save that file with the name
Postman.desktop