Home > System Tutorial > LINUX > body text

Teach you through the steps to install Postman on Ubuntu

PHPz
Release: 2024-01-01 18:07:13
forward
900 people have browsed it

(1)Download

Postman download address: //m.sbmmt.com/link/e56eea9a45b153de634b23780365f976

(2) Unzip and install

sudo tar -xzf Postman-linux-x64-5.5.3.tar.gz
Copy after login

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

Start Postman

./Postman/Postman
Copy after login

(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(前面地址为安装目录,后面软链接地址)
Copy after login

2. Create startup item file

sudo vim/urs/share/applications/postman.desktop
Copy after login

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;
Copy after login

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!

Related labels:
source:jb51.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!