Skip to content

Instantly share code, notes, and snippets.

@hoainamcse
Created April 3, 2023 18:15
Show Gist options
  • Select an option

  • Save hoainamcse/084ee15c6772fac5c1f2ccb3495f619a to your computer and use it in GitHub Desktop.

Select an option

Save hoainamcse/084ee15c6772fac5c1f2ccb3495f619a to your computer and use it in GitHub Desktop.

Revisions

  1. hoainamcse created this gist Apr 3, 2023.
    17 changes: 17 additions & 0 deletions postman-without-snap.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,17 @@
    # How to install Postman on WSL2 without snap
    1. Download the latest tarball file of the Postman API Platform from its [official website](https://www.postman.com/downloads/)
    ```sh
    cd Downloads && wget https://dl.pstmn.io/download/latest/linux_64
    ```
    2. Extract Postman Linux64 compressed file
    ```sh
    tar -xvf linux64 -C ~/Applications
    ```
    3. Add this API testing tool to PATH
    ```sh
    echo 'export PATH="$PATH:$HOME/Applications/Postman"' >> ~/.bashrc
    ```
    4. Now, to run the API testing tool interface, simply type:
    ```sh
    Postman
    ```