Ubuntu 18.04 安装Postman
Postman 是一款功能强大的网页调试和模拟发送HTTP请求的Chrome插件,支持几乎所有类型的HTTP请求,操作简单且方便。
下载并解压 Postman
Postman 官网下载 Linux 版本的安装包。
解压压缩包到 /opt
:
1 | sudo tar -xzf Postman-linux-x64-*.tar.gz -C /opt/ |
可能遇到的错误:
-
错误1:
1
./Postman: error while loading shared libraries: libgconf-2.so.4: cannot open shared object file: No such file or directory
解决方案:
1
sudo apt-get install libgconf-2-4
-
错误2:
1
Gtk-Message: Failed to load module "canberra-gtk-module"
解决方案:
1
sudo apt install libcanberra-gtk-module
创建快捷图标
创建链接:
1 | sudo ln -s /opt/Postman/Postman /usr/bin/postman |
创建快捷图标:
1 | cat > ~/.local/share/applications/postman.desktop <<EOL |
然后输入以下代码:
1 | [Desktop Entry] |
在启动器搜索 Postman 并将其添加到 Dock 栏。
更多
更多 Ubuntu 相关见折腾造作 - Ubuntu
参考资料
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 哆啦 C 梦!
评论