Forked from prrao87/install_postman_mint_no_snap.md
Created
November 7, 2023 01:40
-
-
Save terracenter/19cd78b5ef55ba9fd675d247f00183df to your computer and use it in GitHub Desktop.
Revisions
-
prrao87 revised this gist
Aug 11, 2021 . 1 changed file with 5 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,19 +1,19 @@ # Goal [Postman](https://www.postman.com/) is a usefull app to build and test APIs, most commonly installed on ubuntu-like systems via snap. On recent distributions of Linux Mint (20 and above), snap installs are no longer possible. The instructions below show how to install Postman via the terminal. ### Download Postman `$ wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz` ### Extract archive `$ sudo tar -xzf postman.tar.gz -C /opt` ### Make symlink `$ sudo ln -s /opt/Postman/Postman /usr/bin/postman` ### Optional: Remove downloaded file `$ rm postman.tar.gz` ### Make Desktop icon `$ sudo vim /usr/share/applications/postman.desktop` ``` -
prrao87 renamed this gist
Aug 11, 2021 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
prrao87 revised this gist
Aug 11, 2021 . 1 changed file with 8 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,17 +1,20 @@ # Goal [Postman](https://www.postman.com/) is a usefull app to build and test APIs, most commonly installed on ubuntu-like systems via snap. On recent distributions of Linux Mint (20 and above), snap installs are no longer possible. The instructions below show how to install Postman via the terminal. ## Download postman `$ wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz` ## Extract archive `$ sudo tar -xzf postman.tar.gz -C /opt` ## Make link to /usr/bin `$ sudo ln -s /opt/Postman/Postman /usr/bin/postman` ## Optional: remove downloaded file `$ rm postman.tar.gz` ## Make Desktop icon `$ sudo vim /usr/share/applications/postman.desktop` ``` [Desktop Entry] -
prrao87 created this gist
Aug 11, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ ## Download postman $ wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz ## Extract archive $ sudo tar -xzf postman.tar.gz -C /opt ## Make link to /usr/bin $ sudo ln -s /opt/Postman/Postman /usr/bin/postman ## Optional: remove downloaded file $ rm postman.tar.gz ## Make Desktop icon $ sudo vim /usr/share/applications/postman.desktop ``` [Desktop Entry] Type=Application Name=Postman Icon=/opt/Postman/app/resources/app/assets/icon.png Exec="/opt/Postman/Postman" Comment=Postman Desktop App Categories=Development;Code; ```