Skip to content

Instantly share code, notes, and snippets.

@cagcak
Forked from posemon/postman_install.sh
Created July 26, 2018 06:20
Show Gist options
  • Star 27 You must be signed in to star a gist
  • Fork 12 You must be signed in to fork a gist
  • Save cagcak/8ae6b0aae2908d15aa9a4ce3fcdf35e2 to your computer and use it in GitHub Desktop.
Save cagcak/8ae6b0aae2908d15aa9a4ce3fcdf35e2 to your computer and use it in GitHub Desktop.
Postman install Ubuntu 18.04
#!/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
@MrFigoro
Copy link

MrFigoro commented May 23, 2019

Postman do not start
it is need to install libgconf-2-4:
sudo apt-get update
sudo apt-get install libgconf-2-4

@abjt14
Copy link

abjt14 commented Jul 25, 2019

Works like a charm on Pop!_OS 19.04.

@dimaqw
Copy link

dimaqw commented Sep 5, 2019

amazing!

@Climberdav
Copy link

Well. It save my day. Can't run postman after migrate to 7 (via snap)
Thanks

@mmelkholy
Copy link

Worked great on Ubuntu 19.04. That made my day.

@ikhsanalatsary
Copy link

worked on voyager 18.04 GS

@vasigorc
Copy link

Worked on Ubuntu 18.04 Bionic

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment