Open In App

How to install Postman on Arch-based Linux Distributions(Manjaro) ?

Last Updated : 20 Feb, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

Postman is an HTTP client used to build, test, and modify APIs. It provides a graphical user interface through which developers can generate various types of HTTP requests like GET, POST, PUT, PATCH, and DELETE. It is used by more than 20 million developers across the globe to develop RESTful APIs. Among the operating systems supported by the app are Windows, macOS, and Linux. In this article, we will discuss how to install Postman on Arch-based Linux distributions.

Installing Postman on Manjaro Linux

Step 1: Update and upgrade our system by executing:

$ sudo pacman -Syu

 

 

 

Step 2: Download the latest available package for Linux by visiting https://www.postman.com/downloads/.

 

 

Step 3: Move into our browser’s default download directory and unzip the postman tar file.

cd ~/Downloads 

Downloads tar -xzf postman-linux-x64.tar.gz 

 

Step 4: Relocate the extracted folder into the /opt directory.

sudo mv Postman /opt

 

Step 5: Create a symlink to launch Postman from the shell. 

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

 

Step 6: Now create a new .desktop file to start them by clicking on a launcher icon.

sudo nano /usr/share/applications/postman.desktop

 

Step 7: Copy and paste the following.

[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;

 

Step 8: Search “Postman” in the application manager to launch the application.

 

 

Step 9: Now sign up/into our Postman account by entering our credentials.

 

 

 


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads