Postman is a leading API development platform that simplifies every stage of the API lifecycle—from design and debugging to testing and documentation. Originally a Chrome extension, Postman has evolved into a robust native application used by millions of developers worldwide.
While you can still find older versions, the native app offers superior performance and features. In this guide, we’ll show you the quickest and most efficient ways to install Postman on Ubuntu.
Prerequisites
To follow these steps, you should have:
- A computer running Ubuntu (18.04, 20.04, 22.04, or later).
- A user account with
sudoprivileges.
Method 1: Installing Postman via Snap (Recommended)
The easiest way to install and maintain Postman on Ubuntu is through the Snap packaging system. Snaps are containerized software packages that bundle all dependencies and update automatically.
- Open your terminal (
Ctrl+Alt+T). - Run the following command to install the Postman snap package:Bash
sudo snap install postman - The system will download and install the latest version. Once finished, you’ll see a confirmation message:Plaintext
postman 10.x.x from Postman, Inc. installed
Method 2: Installing via Ubuntu Software Center
If you prefer a graphical interface, you can install Postman directly from the Software Center:
- Open Ubuntu Software from your applications menu.
- Search for “Postman”.
- Click on the Postman entry and hit the Install button.
- Enter your password when prompted to complete the installation.
Starting Postman
Once installed, you can launch Postman by searching for it in your Activities/Applications menu.
When you open the app for the first time:
- Sign In / Sign Up: This allows you to sync your collections, environments, and history across multiple devices.
- Skip Signing In: If you want to dive straight in without an account, click “Skip signing in and take me straight to the app.”
Testing Your Setup
To ensure everything is working correctly, let’s send a sample request:
- Open a new tab in Postman.
- Enter the following URL:
https://reqres.in/api/users - Ensure the request method is set to
GET. - Click Send.
- You should receive a
200 OKstatus and a JSON response containing a list of users.

Conclusion
Postman is an essential tool for any modern web developer. By installing it via Snap, you ensure that you always have the latest features and security updates without manual intervention.
Discover more from TCMHACK
Subscribe to get the latest posts sent to your email.
