-
-
Save developeryashraj/64b680b5dbb914c5ffe2e64274e076cb to your computer and use it in GitHub Desktop.
Revisions
-
developeryashraj revised this gist
Dec 7, 2019 . 1 changed file with 1 addition and 1 deletion.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,6 +1,6 @@ Since Chrome apps are now being deprecated. Download postman from https://dl.pstmn.io/download/latest/linux Go to `Download folder -> "right click" -> "Open in Terminal"` #### Installing Postman (Verify your version of file in below command) -
developeryashraj revised this gist
Dec 7, 2019 . 1 changed file with 17 additions and 16 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,13 +1,11 @@ Since Chrome apps are now being deprecated. Download postman from https://dl.pstmn.io/download/latest/linux Go to Download folder -> "right click" -> "Open in Terminal" #### Installing Postman (Verify your version of file in below command) ```sh tar -xzf Postman-linux-x64-7.13.0.tar.gz ``` If any version is installed before, remove it. ```sh @@ -17,26 +15,29 @@ Move Postman ```sh sudo mv Postman /opt/Postman ``` Create a desktop file ``` cat > postman.desktop <<EOL [Desktop Entry] Encoding=UTF-8 Name=Postman Comment=Version Control Tool Exec=/opt/Postman/Postman Terminal=false Type=Application # Before v6.1.2 # Icon=/opt/Postman/resources/app/assets/icon.png Icon=/opt/Postman/app/resources/app/assets/icon.png MimeType=application/vnd.mysql-workbench-model; Categories=GTK;Database;Development; EOL ``` Move Desktop file: ```sh sudo mv postman.desktop /usr/share/applications/ ``` Remove the tar: ```sh rm Postman-linux-x64-7.13.0.tar.gz ``` You're Done ! -
ba11b0y revised this gist
Nov 11, 2019 . 1 changed file with 6 additions and 1 deletion.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,4 +1,9 @@ Since Chrome apps are now being deprecated. Download postman from https://dl.pstmn.io/download/latest/linux Although I highly recommend using a snap `sudo snap install postman` #### Installing Postman ```sh -
ba11b0y revised this gist
Nov 11, 2019 . 1 changed file with 3 additions and 1 deletion.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 @@ -23,7 +23,9 @@ cat > ~/.local/share/applications/postman.desktop <<EOL Encoding=UTF-8 Name=Postman Exec=postman # Before v6.1.2 # Icon=/opt/Postman/resources/app/assets/icon.png Icon=/opt/Postman/app/resources/app/assets/icon.png Terminal=false Type=Application Categories=Development; -
ba11b0y created this gist
Nov 25, 2017 .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,35 @@ Since Chrome apps are now being depracated. Download postman from https://dl.pstmn.io/download/latest/linux #### Installing Postman ```sh tar -xzf Postman-linux-x64-5.3.2.tar.gz ``` If any version is installed before, remove it. ```sh sudo rm -rf /opt/Postman ``` Move Postman ```sh sudo mv Postman /opt/Postman ``` Create a symbolic link ```sh sudo ln -s /opt/Postman/Postman /usr/bin/postman ``` Create a desktop file ``` cat > ~/.local/share/applications/postman.desktop <<EOL [Desktop Entry] Encoding=UTF-8 Name=Postman Exec=postman Icon=/opt/Postman/resources/app/assets/icon.png Terminal=false Type=Application Categories=Development; EOL ``` Remove the tar: ```sh rm Postman-linux-x64-5.3.2.tar.gz ```