温馨提示×

Ubuntu怎样安装AppImage

小樊
35
2026-07-17 03:36:48
栏目: 智能运维

Ubuntu 上安装和运行 AppImage 非常简单,因为 AppImage 不需要真正“安装”,只需要赋予执行权限即可运行。下面按步骤说明:


一、下载 AppImage 文件

例如从官网或 GitHub 下载一个 .AppImage 文件,比如:

example-app.AppImage

二、赋予执行权限(必须)

打开终端,进入 AppImage 所在目录,然后执行:

chmod +x example-app.AppImage

例如文件在 ~/Downloads

cd ~/Downloads
chmod +x example-app.AppImage

三、运行 AppImage

方法 1:终端运行

./example-app.AppImage

方法 2:双击运行(图形界面)

  1. 右键 AppImage 文件
  2. 选择 属性 → 权限
  3. 勾选 “允许作为程序执行”
  4. 双击即可运行

四、可选:集成到系统菜单(推荐)

AppImage 默认不会出现在应用菜单,可使用工具自动集成。

推荐工具:AppImageLauncher

sudo add-apt-repository ppa:appimagelauncher-team/stable
sudo apt update
sudo apt install appimagelauncher

安装后:

  • 第一次运行 AppImage 会提示 “集成到系统”
  • 自动创建菜单图标、桌面快捷方式

五、常见问题

1️⃣ 双击没反应?

  • 确认已赋予执行权限
  • 可能是缺少依赖(较少见)
  • 尝试在终端运行查看报错

2️⃣ 提示 FUSE 错误(Ubuntu 22.04+)

执行:

sudo apt install libfuse2

六、卸载 AppImage

AppImage 无需卸载

  • 直接删除 .AppImage 文件
  • 若使用 AppImageLauncher,可右键 → 卸载

总结

✅ Ubuntu 使用 AppImage 的核心步骤:

chmod +x xxx.AppImage
./xxx.AppImage

如果你愿意,可以告诉我 具体的 AppImage 名称或 Ubuntu 版本,我可以给你更精确的说明。

0