Skip to content

Instantly share code, notes, and snippets.

@namnguyen02
Created April 3, 2023 18:15
Show Gist options
  • Save namnguyen02/084ee15c6772fac5c1f2ccb3495f619a to your computer and use it in GitHub Desktop.
Save namnguyen02/084ee15c6772fac5c1f2ccb3495f619a to your computer and use it in GitHub Desktop.

How to install Postman on WSL2 without snap

  1. Download the latest tarball file of the Postman API Platform from its official website
cd Downloads && wget https://dl.pstmn.io/download/latest/linux_64
  1. Extract Postman Linux64 compressed file
tar -xvf linux64 -C ~/Applications
  1. Add this API testing tool to PATH
echo 'export PATH="$PATH:$HOME/Applications/Postman"' >> ~/.bashrc
  1. Now, to run the API testing tool interface, simply type:
Postman
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment