从 ubuntu 软件中心全新安装的 postman 无法打开。
这是来自snap list
postman 7.13.0 97 稳定版 postman-inc✓ -
我已经尝试了建议的修复方法这里,但是这并没有起作用。
疯狂的是,这个应用程序已被选为软件中心的横幅,但在 LTS 版本上无法开箱即用!
答案1
本指南将安装非 snap 版本
- 删除 snap 版本
sudo snap remove postman
- 下载并安装 apt 版本
wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz
sudo tar -xzf postman.tar.gz -C /opt
rm postman.tar.gz
sudo ln -s /opt/Postman/Postman /usr/bin/postman
- 创建应用启动器快捷方式(将下面的整个块粘贴到终端中)
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
然后邮递员应该可以在应用程序菜单中使用。
參考文獻:https://www.bluematador.com/blog/postman-how-to-install-on-ubuntu-1604
注意:此问题已在 ubuntu 20.04 lts 中修复,并且 Postman 可立即使用