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

前端 未结 13 628
隐瞒了意图╮
隐瞒了意图╮ 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:45

    Yes, there is awesome simple bash script I found, which allows you to update the Postman Linux app, straight from the terminal, called postman-updater-linux.

    Just install it using NPM:

    npm install -g postman-updater-linux
    

    Then check for updates:

    sudo postman-updater check
    

    Then install:

    sudo postman-updater install
    

    Or update:

    sudo postman-updater update
    

    All three last commands can be used with custom location by adding -l /your/custom/path to end of this command.

提交回复
热议问题