Home  >  Article  >  System Tutorial  >  Teach you through the steps to install Postman on Ubuntu

Teach you through the steps to install Postman on Ubuntu

PHPz
PHPzforward
2024-01-01 18:07:13815browse

(1)Download

Postman download address: https://www.php.cn/link/e56eea9a45b153de634b23780365f976

(2) Unzip and install

sudo tar -xzf Postman-linux-x64-5.5.3.tar.gz

At this time, a Postman folder appears in the current directory.

Start Postman

./Postman/Postman

(3) Create startup icon

It is inconvenient to enter the Postman directory every time. You can create a startup item.

1. Create a soft link

 sudo ln -s/home/c/Downloads/Postman/Postman /urs/bin/postman(前面地址为安装目录,后面软链接地址)

2. Create startup item file

sudo vim/urs/share/applications/postman.desktop

Write:

 [Desktop Entry]

Encoding=UTF-8

Name=Postman

Exec=/urs/bin/postman

Icon=/home/c/Downloads/Postman/Postman/app/assets/icon.png

Terminal=false

Type=Application

Categories=Development;

You can search for Postman in dash.

The above is the detailed content of Teach you through the steps to install Postman on Ubuntu. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:jb51.net. If there is any infringement, please contact admin@php.cn delete