Created
May 30, 2020 15:37
-
-
Save josemarcosrf/4ada30719d56434e65babfff69dd5dd7 to your computer and use it in GitHub Desktop.
Install postman (not the snap version)
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 characters
| # Download postman (instead of the snap from the Ubuntu Software Store) | |
| wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz | |
| sudo tar -xzf postman.tar.gz -C /opt | |
| rm postman.tar.gz | |
| sudo ln -s /opt/Postman/Postman /usr/bin/postman | |
| # Create a desktop entry | |
| cat > ~/.local/share/applications/postman.desktop <<EOL | |
| [Desktop Entry] | |
| Encoding=UTF-8 | |
| Name=Postman | |
| Exec=postman | |
| Icon=/opt/Postman/app/resources/app/assets/icon.png | |
| Terminal=false | |
| Type=Application | |
| Categories=Development; | |
| EOL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment