首页  >  文章  >  系统教程  >  通过步骤来教你在Ubuntu上安装Postman

通过步骤来教你在Ubuntu上安装Postman

PHPz
PHPz转载
2024-01-01 18:07:13814浏览

(1)下载

     Postman下载地址:https://www.php.cn/link/e56eea9a45b153de634b23780365f976

(2)解压安装

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

    此时,在当前目录出现一个Postman文件夹。

    启动Postman

./Postman/Postman

(3)创建启动图标

    每次进入Postman目录很不方便,可以创建一个启动项。

     1.建立软链接

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

    2.创建启动项文件

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

      写入:

 [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;

在dash里就可以搜索到Postman。

以上是通过步骤来教你在Ubuntu上安装Postman的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:jb51.net。如有侵权,请联系admin@php.cn删除