Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save terracenter/19cd78b5ef55ba9fd675d247f00183df to your computer and use it in GitHub Desktop.
Save terracenter/19cd78b5ef55ba9fd675d247f00183df to your computer and use it in GitHub Desktop.

Revisions

  1. @prrao87 prrao87 revised this gist Aug 11, 2021. 1 changed file with 5 additions and 5 deletions.
    10 changes: 5 additions & 5 deletions install_postman_mint_no_snap.md
    Original 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
    ### Download Postman
    `$ wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz`

    ## Extract archive
    ### Extract archive
    `$ sudo tar -xzf postman.tar.gz -C /opt`

    ## Make link to /usr/bin
    ### Make symlink
    `$ sudo ln -s /opt/Postman/Postman /usr/bin/postman`

    ## Optional: remove downloaded file
    ### Optional: Remove downloaded file
    `$ rm postman.tar.gz`

    ## Make Desktop icon
    ### Make Desktop icon
    `$ sudo vim /usr/share/applications/postman.desktop`

    ```
  2. @prrao87 prrao87 renamed this gist Aug 11, 2021. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  3. @prrao87 prrao87 revised this gist Aug 11, 2021. 1 changed file with 8 additions and 5 deletions.
    13 changes: 8 additions & 5 deletions install_postman.md
    Original 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
    `$ wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz`

    ## Extract archive
    $ sudo tar -xzf postman.tar.gz -C /opt
    `$ sudo tar -xzf postman.tar.gz -C /opt`

    ## Make link to /usr/bin
    $ sudo ln -s /opt/Postman/Postman /usr/bin/postman
    `$ sudo ln -s /opt/Postman/Postman /usr/bin/postman`

    ## Optional: remove downloaded file
    $ rm postman.tar.gz
    `$ rm postman.tar.gz`

    ## Make Desktop icon
    $ sudo vim /usr/share/applications/postman.desktop
    `$ sudo vim /usr/share/applications/postman.desktop`

    ```
    [Desktop Entry]
  4. @prrao87 prrao87 created this gist Aug 11, 2021.
    24 changes: 24 additions & 0 deletions install_postman.md
    Original 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;
    ```