A very easy way to install Postman in Ubuntu 22.04 Linux is to use snapd
command, Simply open your terminal window and type sudo snap install postman
command on ubuntu terminal window or command line and press enter, and it will install it.
How to Install Postman on Ubuntu 22.04
Steps to download and install Postman in Linux ubuntu 22.04 using a terminal or command line:
Step 1 – Open Terminal
Pressing Ctrl+Alt+T on keyboard to start terminal window or command line.
Step 2 – Update System Packages
Run the sudo apt update
command to update system packages before doing anything to the system:
sudo apt update
Step 3 – Install Snapd
if snapd installed. Then skip this step. if it’s not installed, Type the sudo apt install snapd
the on terminal window and press enter to install snapd:
sudo apt install snapd
Step 4 – Install Postman on Ubuntu 22.04
Run sudo snap install postman
command on command line or terminal window to install postman application on ubuntu 22.04 system:
sudo snap install postman
Step 5 – Start Postman
To start Postman, visit the Application menu’s search bar, type “postman”, and then click on the icon of the Postman application.
Moreover, there is another option that you can use to install Postman on your Ubuntu 22.04 system without snap command.
Here are some steps to install Postman without snap
on ubuntu 22.04 Linux:
- Start Terminal via Pressing Ctrl+Alt+T
- Download Postman via:
wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz
- Extract the archive:
sudo tar -xzf postman.tar.gz -C /opt
- Create a symlink:
sudo ln -s /opt/Postman/Postman /usr/bin/postman
- Optionally, remove the downloaded file via:
rm postman.tar.gz
- Create a desktop icon via:
sudo vim /usr/share/applications/postman.desktop
Conclusion
That’s all, With the help of snapd
command, within a few minutes you installed the Postman application in your ubuntu 22.04 linux system.