美文网首页
LM Studio使用笔记

LM Studio使用笔记

作者: 杨晓凯 | 来源:发表于2025-02-26 11:02 被阅读0次

运行环境: Ubuntu linux
软件下载: https://lmstudio.ai/
问题:

  1. 运行错误
    [64834:0227/100136.017902:FATAL:setuid_sandbox_host.cc(163)] The SUID sandbox helper binary was found, but is not configured correctly. Rather than run without sandboxing I'm aborting now. You need to make sure that /tmp/.mount_LM-StuNQDXeb/chrome-sandbox is owned by root and has mode 4755.
    初步解决方案:
    临时禁用沙箱
    ./LM-Studio-0.3.9-6-x64.AppImage --no-sandbox

  2. 无法下载模型
    主要问题是huggingface.co无法访问,需要采用国内镜像

解决方案:
1)解开AppImage
./LM-Studio-0.3.9-6-x64.AppImage --appimage-extract

  1. 替换设置文件中所有huggingface.co为hf-mirror.com
    cd squashfs-root/resources/app/.webpack/main/
    find ./ -type f -exec sed -i 's/huggingface.co/hf-mirror.com/g' {} +
  2. 运行程序
    cd squashfs-root/
    ./AppRun

参考:
https://www.cnblogs.com/hencins/p/14446164.html

相关文章

  • Android Studio 导包、引用与依赖

    Android Studio笔记 自己总结的一点有关在使用android studio的笔记,虽然不是很在行道,慢...

  • s-tui:在 Linux 中监控 CPU 温度、频率、功率和使

    一般每个 Linux 管理员都会使用lm_sensors 监控 CPU 温度。lm_sensors (Linux ...

  • vscode使用手记

    visual studio code 使用笔记 安装中文插件 安装完重启下 其他插件 Auto Close Tag...

  • LM393使用

    使用示例 LM393是电压比较器,将接在R-Light端的光敏二极管接收光照时产生的电阻值变化变成电压信号传递给电...

  • 最近想研究Levenberg-Marquardt(LM算法)

    RT研究LM算法在具体场景下的使用和优化

  • R语言常用函数2021.3.7

    1. 常见函数 1.1 lm函数线性回归分析 lm函数使用数据集,他的格式必须是数据框 其中pr(t)表示t检验,...

  • Android studio 混淆配置

    最近在读《Android 组件化架构》,看到混淆基本配置就做了一下整理笔记。 混淆 studio 使用Progua...

  • 01. Android 集成QQ登录

    前言 本篇笔记使用的工具是Android Studio。 我是一个菜鸟,这是我在简书写的第一篇学习笔记。希望以后的...

  • 2017

    LM35温度传感器的使用,利用proteus模拟仿真LM35温度传感器。根据不同的温度范围,选择相应的LED灯亮。

  • Android Studio 使用JNI笔记

    主要记录一些as使用JNI的一些配置,避免忘记每次都要到处查找。。。使用as开发可以不用创建Android.mk文...

网友评论

      本文标题:LM Studio使用笔记

      本文链接:https://www.haomeiwen.com/subject/zzcopjtx.html