-
-
Save cagcak/8ae6b0aae2908d15aa9a4ce3fcdf35e2 to your computer and use it in GitHub Desktop.
Postman install Ubuntu 18.04
This file contains 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
#!/bin/bash | |
# Get postman app | |
wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz | |
sudo tar -xzf postman.tar.gz -C /opt | |
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 |
Worked great on Ubuntu 19.04. That made my day.
worked on voyager 18.04 GS
Worked on Ubuntu 18.04 Bionic
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Well. It save my day. Can't run postman after migrate to 7 (via snap)
Thanks