Skip to content

Instantly share code, notes, and snippets.

@Akhil-Suresh
Last active October 30, 2025 15:27
Show Gist options
  • Save Akhil-Suresh/e036a52bd00104ab21e9891224157809 to your computer and use it in GitHub Desktop.
Save Akhil-Suresh/e036a52bd00104ab21e9891224157809 to your computer and use it in GitHub Desktop.

Revisions

  1. Akhil-Suresh revised this gist Dec 10, 2019. No changes.
  2. Akhil-Suresh revised this gist Dec 10, 2019. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion postman_installation.md
    Original file line number Diff line number Diff line change
    @@ -9,7 +9,7 @@ sudo rm -rf /opt/Postman

    __Step 2__

    This will install postman to /tmp directory and move it to /opt/ directory.
    This will install postman to `/tmp` directory and move it to `/opt/` directory.
    ```sh
    tar -C /tmp/ -xzf <(curl -L https://dl.pstmn.io/download/latest/linux64) && sudo mv /tmp/Postman /opt/
    ```
  3. Akhil-Suresh revised this gist Dec 10, 2019. 1 changed file with 3 additions and 0 deletions.
    3 changes: 3 additions & 0 deletions postman_installation.md
    Original file line number Diff line number Diff line change
    @@ -1,18 +1,21 @@
    ## Installing Postman

    __Step 1__

    If any version of postman is installed we need to remove it
    ```sh
    sudo rm -rf /opt/Postman
    ```

    __Step 2__

    This will install postman to /tmp directory and move it to /opt/ directory.
    ```sh
    tar -C /tmp/ -xzf <(curl -L https://dl.pstmn.io/download/latest/linux64) && sudo mv /tmp/Postman /opt/
    ```

    __Step 3__

    Create a desktop file
    ```sh
    sudo tee -a /usr/share/applications/postman.desktop << END
  4. Akhil-Suresh revised this gist Dec 10, 2019. 1 changed file with 4 additions and 1 deletion.
    5 changes: 4 additions & 1 deletion postman_installation.md
    Original file line number Diff line number Diff line change
    @@ -1,15 +1,18 @@
    ##Installing Postman
    ## Installing Postman

    __Step 1__
    If any version of postman is installed we need to remove it
    ```sh
    sudo rm -rf /opt/Postman
    ```

    __Step 2__
    This will install postman to /tmp directory and move it to /opt/ directory.
    ```sh
    tar -C /tmp/ -xzf <(curl -L https://dl.pstmn.io/download/latest/linux64) && sudo mv /tmp/Postman /opt/
    ```

    __Step 3__
    Create a desktop file
    ```sh
    sudo tee -a /usr/share/applications/postman.desktop << END
  5. Akhil-Suresh created this gist Dec 10, 2019.
    25 changes: 25 additions & 0 deletions postman_installation.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,25 @@
    ##Installing Postman

    If any version of postman is installed we need to remove it
    ```sh
    sudo rm -rf /opt/Postman
    ```

    This will install postman to /tmp directory and move it to /opt/ directory.
    ```sh
    tar -C /tmp/ -xzf <(curl -L https://dl.pstmn.io/download/latest/linux64) && sudo mv /tmp/Postman /opt/
    ```

    Create a desktop file
    ```sh
    sudo tee -a /usr/share/applications/postman.desktop << END
    [Desktop Entry]
    Encoding=UTF-8
    Name=Postman
    Exec=/opt/Postman/Postman
    Icon=/opt/Postman/app/resources/app/assets/icon.png
    Terminal=false
    Type=Application
    Categories=Development;
    END
    ```