ubuntu安裝postman的詳細(xì)教程

小云
616
2023-10-13 14:18:58

以下是在Ubuntu上安裝Postman的詳細(xì)步驟:

  1. 打開終端。

  2. 使用以下命令下載Postman的安裝包:

wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz
  1. 解壓下載的安裝包:
tar -xvf postman.tar.gz
  1. 移動(dòng)解壓后的文件夾到 /opt 目錄下:
sudo mv Postman /opt
  1. 創(chuàng)建一個(gè)符號(hào)鏈接以便可以直接在終端中運(yùn)行Postman:
sudo ln -s /opt/Postman/Postman /usr/local/bin/postman
  1. 創(chuàng)建一個(gè)桌面啟動(dòng)器圖標(biāo):
sudo nano /usr/share/applications/postman.desktop
  1. 在打開的文件中,復(fù)制并粘貼以下內(nèi)容:
[Desktop Entry]
Encoding=UTF-8
Name=Postman
Exec=postman
Icon=/opt/Postman/app/resources/app/assets/icon.png
Terminal=false
Type=Application
Categories=Development;
  1. Ctrl + X 保存并退出nano編輯器。

  2. 現(xiàn)在,您可以在應(yīng)用程序菜單中找到并打開Postman,或者在終端中運(yùn)行 postman 命令啟動(dòng)Postman。

這樣,您就成功在Ubuntu上安裝了Postman。

0