In the world of API development, the Postman is a prominent tool. The Postman allows you to build, test, and manage the APIs easily. It also supports automation and you can use it to effectively define parameters and view the response. For quick command-line requests without a GUI, the curl utility on Ubuntu 24.04 covers similar ground. Since Postman is a popular choice for developers and with the open-source nature of Ubuntu, it is obvious that you want to install and use Postman on Ubuntu 24.04 too. 

Quick answer

You can install Postman on Ubuntu 24.04 with Snap, Flatpak, App Center, or the tar package. Developers who only need command-line API workflows can also install the Postman CLI.

How to Install Postman on Ubuntu 24.04

To install Postman on Ubuntu 24.04, follow either of the following methods:

Method Install Command Auto-updates Notes
Snap sudo snap install postman Yes Recommended; sandboxed
Flatpak sudo flatpak install flathub com.getpostman.Postman Via Flatpak Requires Flathub setup first
Tar package wget + tar + ./Postman No Manual PATH setup needed
App Center GUI only Yes No terminal required
Postman CLI curl -o- "..." | sh No Terminal-only API testing

Method 1: Install Postman on Ubuntu 24.04 Using the Snap

A Snap in Linux refers to a package that contains all the libraries and other dependencies required to install the package. It also hosts the Postman. To install Postman on Ubuntu 24.04 using the Snap, execute the following command:

sudo snap install postman
Terminal output of sudo snap install postman on Ubuntu 24.04

To update the snap-based Postman installation on Ubuntu 24.04, run the following command:

sudo snap refresh postman
Terminal output of sudo snap refresh postman on Ubuntu 24.04

You can launch the Snap-based Postman from the Activities or via the Terminal using:

snap run postman

Method 2: Install Postman on Ubuntu Using the Flatpak

The Flatpak is among the most popular ways that developers use to distribute their software on Linux distros. Among these softwares, Postman also exists. To install Postman on Ubuntu 24.04 using the Flatpak, follow these steps:

Step 1: Add the Flathub Repository

The Flathub repository is not configured on Ubuntu 24.04 by default. To add it, run the below command:

flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
Terminal output of flatpak remote-add adding Flathub repository on Ubuntu 24.04

Now, execute the below-highlighted command to install the Flathub base packages on Ubuntu 24.04:

sudo flatpak install flathub
Terminal output of sudo flatpak install flathub on Ubuntu 24.04

Step 2: Install Postman

Next, run the following command to install Postman on Ubuntu 24.04 via the Flatpak:

sudo flatpak install flathub com.getpostman.Postman
Terminal output of sudo flatpak install com.getpostman.Postman on Ubuntu 24.04

The Flatpak-based Postman can be run by executing the following command:

flatpak run com.getpostman.Postman

You can update the Flatpak-based Postman via the below command:

sudo flatpak update --app com.getpostman.Postman
Terminal output of sudo flatpak update Postman on Ubuntu 24.04

Method 3: Install Postman on Ubuntu Using the Tar File

Developers use the Tar file to distribute their software in archived format. You can also use the Tar file to install Postman on Ubuntu 24.04, as highlighted in the below steps:

Step 1: Download the Postman Tar File

Here, run the following command to download the Postman’s official tar file on Ubuntu 24.04:

wget https://dl.pstmn.io/download/latest/linux
Terminal output of wget downloading Postman tar file on Ubuntu 24.04

Step 2: Extract the Postman Tar File

Now, use the following command to extract the download Postman’s tar file:

tar -xzf linux
Terminal output of tar -xzf linux extracting Postman archive on Ubuntu 24.04

Step 3: Run Postman

After extracting the Postman’s Tar file, navigate to the extracted directory (Postman) and then launch the Postman:

cd Postman
./Postman
Terminal output of ./Postman launching the Postman executable on Ubuntu 24.04

By using the above approach, you must provide the full path to the Postman executable or use the cd command to navigate. However, you add the Postman’s directory to the PATH variable to make it readily executable. This is the same PATH approach used when you install Go on Ubuntu 24.04 from a tarball. To do that, open the ./bashrc file using:

sudo nano ~/.bashrc

In the bashrc file, add the following and replace the path with the Postman folder’s path:

export PATH="/home/user/Postman:$PATH"
nano editor showing .bashrc file with Postman added to PATH variable on Ubuntu 24.04

Now trigger the changes in the .bashrc file by running the below command:

source ~/.bashrc

After adding the Postman to the PATH variable, you can directly launch it from the Terminal.

Note: If you want to uninstall the Tar file-based Postman installation, just remove the Postman directory using the “sudo rm -rf Postman” command.

Method 4: Install Postman on Ubuntu 24.04 Via the App Center

The Postman is officially available in Ubuntu 24.04’s App Center. To install it, search for “postman” select the version, and Install it, as seen below:

Ubuntu 24.04 App Center showing Postman with Install button

Method 5: Install Postman CLI on Ubuntu 24.04

If you want to use the CLI version of Postman, download and install it by executing the following command:

curl -o- "https://dl-cli.pstmn.io/install/linux64.sh" | sh
Terminal output of curl command installing Postman CLI on Ubuntu 24.04

To launch the CLI version of Postman, run the “postman command (in lower case):

postman
Terminal output of postman command launching Postman CLI on Ubuntu 24.04

To remove the CLI version of Postman, use the following command:

sudo rm -rf /usr/local/bin/postman
Terminal output of sudo rm removing Postman CLI from /usr/local/bin

How to Uninstall Postman From Ubuntu 24.04

Since there are different approaches to installing Postman on Ubuntu 24.04, the same is true for the uninstallation methods.

To uninstall the Flatpak-based Postman, execute:

flatpak uninstall com.getpostman.Postman
Terminal output of flatpak uninstall removing Postman on Ubuntu 24.04

For uninstalling the Snap-based postman, run the below command:

sudo snap remove postman
Terminal output of sudo snap remove postman on Ubuntu 24.04

If you are using the App Center-based Postman installation, you can uninstall it by opening the App Center, selecting Manage, and clicking on the Postman app. Next, use the three vertical dots and hit the Uninstall button:

Ubuntu 24.04 App Center Manage screen showing Postman for uninstallation

Postman app or Postman CLI?

Install the Postman desktop app when you want a graphical workspace for collections, environments, authentication, and API response inspection.

Install Postman CLI when you need to run collections or API tests from Terminal, scripts, or CI workflows — the same environments where you would install AWS CLI on Ubuntu 24.04. Many developers use both: the app for building requests and the CLI for repeatable test runs.

Related Ubuntu 24.04 guides