How to install/start Postman native v4.10.3 on Ubuntu 16.04 LTS 64-bit?

前端 未结 13 642
隐瞒了意图╮
隐瞒了意图╮ 2021-01-30 02:26

I downloaded Postman for Linux (from https://www.getpostman.com/apps), unpacked .tar.gz file into ~/bin/postman and then tried to execute ~/bin/postman/Postma

13条回答
  •  佛祖请我去吃肉
    2021-01-30 02:37

    Edit:

    If you have snap or want to install it, just do:

    $ sudo snap install postman
    

    if you don't have it, install it as:

    $ sudo apt update
    $ sudo apt install snapd
    

    Another way is create an script:

    First create this script:

    create a file install-postman.sh, inside of it add:

    #!/bin/bash
    cd /tmp || exit
    echo "Downloading Postman ..."
    wget -q https://dl.pstmn.io/download/latest/linux?arch=64 -O postman.tar.gz
    tar -xzf postman.tar.gz
    rm postman.tar.gz
    
    echo "Installing to opt..."
    if [ -d "/opt/Postman" ];then
        sudo rm -rf /opt/Postman
    fi
    sudo mv Postman /opt/Postman
    
    echo "Creating symbolic link..."
    if [ -L "/usr/bin/postman" ];then
        sudo rm -f /usr/bin/postman
    fi
    sudo ln -s /opt/Postman/Postman /usr/bin/postman
    
    echo "Installation completed successfully."
    echo "You can use Postman!"
    

    run it in terminal with:

    $ sh install-postman.sh
    

    Then create the desktop launcher:

    Postman.desktop

    [Desktop Entry]
    Encoding=UTF-8
    Name=Postman
    Exec=postman
    Icon=/opt/Postman/resources/app/assets/icon.png
    Terminal=false
    Type=Application
    Categories=Development;
    

    Put this file in your desktop if you want (don't forget give to it execution permissions). Double click, and that's it!

    Forever thanks to Aviskase (github acount name).

    source -> https://gist.github.com/aviskase/e642248c35e400b56e2489430952369f#file-postman-desktop

提交回复
热议问题