如何在Ubuntu上安装Postman Native?

时间:2018-02-08 14:00:28

标签: ubuntu postman

我已尝试过以下步骤,但它对我不起作用:

(1)wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz

(2)sudo tar -xzf postman.tar.gz -C /opt

(3)rm postman.tar.gz

(4)sudo ln -s /opt/Postman/Postman /usr/bin/postman

参考: How to install/start Postman native v4.10.3 on Ubuntu 16.04 LTS 64-bit? 。 当我尝试第4步时,我遇到了以下错误: “ln:无法创建符号链接'/ usr / bin / postman':文件存在”

然后我搜索了更多信息,然后我尝试了这个命令: sudo unlink /usr/bin/utserver输出这些错误“unlink:无法取消链接'/ usr / bin / utserver':没有这样的文件或目录”。

我又尝试了另一个命令sudo rm /usr/bin/utserver然后输出这些错误“rm:无法删除'/ usr / bin / utserver':没有这样的文件或目录” 。 谢谢你的帮助。

1 个答案:

答案 0 :(得分:2)

错误只是说您尝试创建的符号链接已经存在...所以只需删除它

ls -la /usr/bin/postman  #  issue this to confirm it exists

sudo rm /usr/bin/postman  #  remove it if it exists

现在再次运行你的(4)命令

sudo ln -s /opt/Postman/Postman /usr/bin/postman

通过发布确认安装工作

which  postman  # if installed it will say :  /usr/bin/postman