Created
April 3, 2023 18:15
-
-
Save hoainamcse/084ee15c6772fac5c1f2ccb3495f619a to your computer and use it in GitHub Desktop.
Revisions
-
hoainamcse created this gist
Apr 3, 2023 .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,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 ```