Created
May 7, 2018 02:12
-
-
Save 3l3n01/f374ebc5b1554145866c4d6187993b60 to your computer and use it in GitHub Desktop.
Postman installation for Ubuntu 17.10
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
#Installing libgconf2-4 library in case it is not installed | |
sudo apt install libgconf2-4 | |
#Getting latest postman for 64bit operation system | |
wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz | |
#Extraction the file in /opt folder | |
sudo tar -xzf postman.tar.gz -C /opt | |
#Creating symlink | |
sudo ln -s /opt/Postman/Postman /usr/bin/postman | |
#Removing unnecessary postman archive from your home directory | |
sudo rm -rf postman.tar.gz | |
#Creating shortcut for easy access pinnable to taskbar | |
cat > ~/.local/share/applications/postman.desktop <<EOL | |
[Desktop Entry] | |
Encoding=UTF-8 | |
Name=Postman | |
Exec=postman | |
Icon=/opt/Postman/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