Set Up Postman on Ubuntu 20.04 - Step by Step Process ?

Developing an APIs is a tiring process and requires a lot of effort considering its management.

It is an exhausting and very demanding task. The entire project can have multiple updates that require a lot of hard work and attention to the details. 

Postman makes the life of all back end developers much easier. It is largely used to create the Application Programming Interface (API), which is then integrated into the applications based on the requirements. It also automates testing, publishing, and used in documentation. 

Postman is largely available on many operating systems and is used for API integrations. The collections in Postman make it easy to use and it is compatible with Linux as well.

Here at LinuxAPT, as part of our Server Management Services, we regularly help our Customers to perform related applications development queries.

In this context, we shall look into how to set up Postman on Ubuntu 20.04 LTS system.


How to install Postman on Ubuntu ?

To download Postman for Ubuntu 20.04 we will be using the famous snap package. Snap is a package that has multiple third-party software and helps Ubuntu users install all required packages.

The automatic updates in snap make it a famous choice for the users when it comes to downloading a new software application.

Open up the terminal window using the Ctl+Alt+T shortcut.

When the terminal opens up, type the following command:

$ sudo snap install postman

The system might ask for the password of the logged-in user.

Provide the password in the field and then press the <enter> key from the keyboard.

This will start the download process.

Generally, this process will take some time, so do not exit the terminal window unless the installation is completed. 

After a while, when Postman is installed in your system the application version will appear on the screen along with the installed status.

Note: Users can opt for the web browser extension of the Postman application if needed.


How to Launch Postman on Ubuntu ?

Since we have installed Postman in our computer systems it is time to access the application. We will be accessing the application by using two methods. Let's check them out.


Method 01: Using Command Line Interface

To access the Postman application using the CLI, simply type the following in the terminal window of your system:

$ postman

Method 02: Using GUI

To access the Postman application using the GUI of the system, simply go to the Applications of your system. Now, type Postman in the search bar. You will see Postman in the available options. Click on it.


How to set up Postman ?

Upon the first-time launch, you see a window asking for the required credentials to log in to the application. 

If you already have an account then just provide the relevant information otherwise you will be required to create a new account before proceeding any further.

For the first time, once you have launched the application you will see an empty workspace.


To learn about Postman, you can refer to Postman Learning Center . The famous methods are GET, POST, PUT and DELETE that are mostly used in API calls. GET is used to fetch information, POST is used to send information to the server, while PUT is used to update the information and DELETE method is used to delete anything. 

To request for a JSON by sending a GET request to a REST API active via the web you need to access the place holder API using the link

You can select either of the GET requests, all you need to do is to set the request type to GET. 

Then click on Send. In response you will get the list of information you requested.


How to remove Postman from Ubuntu ?

To uninstall the Postman application from your system, run the following command in the terminal window:

$ sudo snap remove postman

The system may ask for your password. Provide it and then hit the <enter> key.

This way you can easily uninstall Postman from your system if needed.


[Need urgent assistance in fixing missing packages on Ubuntu System? We are available to help you. ]

This article covers the method of installation of Postman on the Ubuntu 20.04 system. Also, we explored the method to set up Postman and how to send a request for the first time. 

Here, you will also learn the method of removing Postman application from system.


Postman is a complete API development platform that helps you manage your APIs in every stage of development, from designing and testing, to publishing API documentation and monitoring. 

Postman started as a Chrome browser extension and quickly became one of the most widely used API tools by developers all over the world.


Installing Postman on Ubuntu:

The easiest way is to install Postman on Ubuntu is by using the snappy packaging system. 

Snaps are self-contained software packages that include the binary all dependencies needed to run the application. Snap packages can be installed from either the command-line or via the Ubuntu Software application.

To install the Postman snap, open your terminal (Ctrl+Alt+T) and run the following command as a user with sudo privileges :

$ sudo snap install postman

Related Posts