Created
May 24, 2020 12:50
-
-
Save elcascarudo-dev/e39eacb490d11cea0c22e1923072d855 to your computer and use it in GitHub Desktop.
Instalar Postman en Ubuntu 20.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
1.- Descargar Postman | |
https://www.postman.com/downloads/ | |
2.- Descomprimirlo | |
tar zxf Postman-*.tar.gz | |
3.- Mover a directorio opt/ | |
sudo mv Postman/ /opt/ | |
4.- Crear enlace simbolico en /usr/local/bin/ | |
sudo ln -s /opt/Postman/Postman /usr/local/bin/postman | |
5.- Crear acceso directo | |
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 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment