Created
April 25, 2020 16:06
-
-
Save Bobmajor/319e89e9c876cccdb1b77f1783e9a820 to your computer and use it in GitHub Desktop.
HOW TO INSTALL POSTMAN ON LINUX WITHOUT SNAP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Go to the Postman app download page at https://www.getpostman.com/apps. You can choose the os version from the drop-down. x64 for 64 bit Operating System and x84 for the 32 bit based Linux | |
2. Open the terminal and go to the directory where you have downloaded the tar file. If you have downloaded on the Downloads folder | |
cd ~/Downloads/ | |
3. Run the following commands, | |
sudo rm -rf /opt/Postman/ | |
Extract the compressed file with the command below or use gui option | |
sudo tar xvf Postman-<your version>.tar.gz -C /opt/ | |
sudo ln -sf /opt/Postman/app/Postman /usr/bin/postman | |
4. create a file for the desktop entry so you can easily search the Postman app like any other app in your computer. | |
nano ~/.local/share/applications/postman.desktop | |
5. Write the following in the file. | |
[Desktop Entry] | |
Encoding=UTF-8 | |
Name=Postman | |
X-GNOME-FullName=Postman API Client | |
Exec=/usr/bin/postman | |
Icon=/opt/Postman/app/resources/app/assets/icon.png | |
Terminal=false | |
Type=Application | |
Categories=Development; |
Author
Bobmajor
commented
Dec 3, 2020
via email
Welcome.
…On Tue, Nov 10, 2020 at 11:26 AM Charles Elloit ***@***.***> wrote:
***@***.**** commented on this gist.
------------------------------
Thanks man it was helpfully!!! :)
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<https://gist.github.com/319e89e9c876cccdb1b77f1783e9a820#gistcomment-3522377>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AEKF2D4PHO4W4A5TYDVU7F3SPD2MXANCNFSM4SJV3FXQ>
.
Thank you, for the tips! I have included this in a script to automate the task for Linux https://gist.github.com/pil0u/b2921969ba5bc2dd55307de0d78df025
Thanks a lot, this not only helps me to install Postman but teachs me how to link an app in my applications
We appreciate you.
Thanks, nice.
Fantastic!
Great, Thanks.
Thank you for sharing
Thank you!!
Thanks man, works great!
Thanks :D
Thanks a bunch! :)
Thanks for sharing!!
Works perfectly!
The saviour!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment