Created
June 14, 2023 13:42
-
-
Save gmolveau/4173cb30bd7220deccad329954d8ffcf to your computer and use it in GitHub Desktop.
Postman ubuntu install without snap
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
# ubuntu install Postman without snap | |
DOWNLOAD_PATH="${HOME}/Downloads" | |
POSTMAN_FILENAME="postman-linux-x64.tar.gz" | |
POSTMAN_DOWNLOAD_PATH="${DOWNLOAD_PATH}/${POSTMAN_FILENAME}" | |
POSTMAN_URL="https://dl.pstmn.io/download/latest/linux_64" | |
wget -c "${POSTMAN_URL}" -O "${POSTMAN_DOWNLOAD_PATH}" | |
sudo rm -rf /opt/Postman/ | |
sudo tar xvf "${POSTMAN_DOWNLOAD_PATH}" -C /opt/ | |
sudo ln -sf /opt/Postman/app/Postman /usr/bin/postman | |
cat <<EOT >> ~/.local/share/applications/Postman.desktop | |
[Desktop Entry] | |
Encoding=UTF-8 | |
Name=Postman | |
X-GNOME-FullName=Postman API Client | |
Exec=/usr/bin/postman | |
Icon=/opt/Postman/app/resources/app/assets/icon.png | |
Terminal=false | |
Type=Application | |
Categories=Development; | |
EOT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment