Skip to content

Instantly share code, notes, and snippets.

View joshnavdev's full-sized avatar

Joshua Navarro joshnavdev

  • Globant
  • Perú - Lima
View GitHub Profile
@nothub
nothub / postman-install.sh
Last active March 3, 2021 05:16 — forked from Bobmajor/gist:319e89e9c876cccdb1b77f1783e9a820
install postman without snap
#!/usr/bin/env bash
set -e
wget -O /tmp/postman.tar.gz https://dl.pstmn.io/download/latest/linux64
sudo rm -rf /opt/Postman/ && sudo tar xvf /tmp/postman.tar.gz -C /opt/
sudo ln -sf /opt/Postman/app/Postman /usr/bin/postman
rm /tmp/postman.tar.gz
@Bobmajor
Bobmajor / gist:319e89e9c876cccdb1b77f1783e9a820
Created April 25, 2020 16:06
HOW TO INSTALL POSTMAN ON LINUX WITHOUT SNAP
1. Go to the Postman app download page at https://www.getpostman.com/apps. You can choose the os version from the drop-down. x64 for 64 bit Operating System and x84 for the 32 bit based Linux
2. Open the terminal and go to the directory where you have downloaded the tar file. If you have downloaded on the Downloads folder
cd ~/Downloads/
3. Run the following commands,
sudo rm -rf /opt/Postman/