自学内容网 自学内容网

Ubuntu安装运行 xx.AppImage 文件

(以LM_Studio-0.3.4.AppImage为例)

一、安装运行

到官网(https://lmstudio.ai/)下载好LM_Studio-0.3.4.AppImage后,在文件目录下打开终端

  • 可执行权限
chmod a+x LM_Studio-0.3.4.AppImage
  • 安装FUSE
sudo apt install libfuse2
sudo apt install fuse3
# 某些系统可以不用安装fuse3,比较新的版本不安装会报错
  • 运行
./LM_Studio-0.3.4.AppImage

启动成功

外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传

二、问题解决

(1)fuse: failed to exec fusermount: No such file or directory

我运行./LM_Studio-0.3.4.AppImage后报错

fuse: failed to exec fusermount: No such file or directory

Cannot mount AppImage, please check your FUSE setup.
You might still be able to extract the contents of this AppImage
if you run it with the --appimage-extract option.
See https://github.com/AppImage/AppImageKit/wiki/FUSE
for more information
open dir error: No such file or directory

但查看了一下,文件路径并没有错

外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传

这是因为系统比较新,需要安装fuse3,安装完成后重新运行命令即可

sudo apt install fuse3
./LM_Studio-0.3.4.AppImage

参考链接:

Ubuntu安装xx.AppImage软件

openSUSE Tumbleweed运行AppImage提示“fuse: failed to exec fusermount: Permission denied”问题


原文地址:https://blog.csdn.net/Netceor/article/details/143053378

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!