Package Details: lmstudio-appimage 0.2.20-1

Git Clone URL: https://aur.archlinux.org/lmstudio-appimage.git (read-only, click to copy)
Package Base: lmstudio-appimage
Description: Discover, download, and run local LLMs
Upstream URL: https://lmstudio.ai/
Licenses: custom
Submitter: myyc
Maintainer: myyc (SoleSoul)
Last Packager: myyc
Votes: 5
Popularity: 1.40
First Submitted: 2023-11-22 14:19 (UTC)
Last Updated: 2024-04-19 20:20 (UTC)

Latest Comments

1 2 Next › Last »

tovo commented on 2024-03-28 21:48 (UTC)

I can confirm, it is now working. Thanks a lot!

heavyjoe commented on 2024-03-28 12:12 (UTC)

i just wanted to say thank you for the fix!

myyc commented on 2024-03-28 11:08 (UTC)

should be fixed now! something changed in the handling of appimages i wasn't aware of. be aware that it affects old versions too so if you want to downgrade you can't easily.

DemianNetwork commented on 2024-03-28 08:51 (UTC)

Same trouble, how to fix ?

This doesn't look like a squashfs image.

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

tovo commented on 2024-03-27 15:37 (UTC)

Hi, Just updated today and lm-studio stopped working.

Error message:

This doesn't look like a squashfs image.

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

Fuse is installed and lm-studio --appimage-extract gives:

This doesn't look like a squashfs image.
Failed to open squashfs image

Is there any workaround?

myyc commented on 2024-02-21 15:47 (UTC)

alright. i caved in and added the symlinks here. still think it's a bug that should be fixed upstream. when it is i'll just remove them.

phrippy commented on 2024-02-05 02:04 (UTC)

I am ready to create a fork of this PKGBUILD with a binary patch that corrects the library paths from /usr/local/lib to /usr/lib. Can I mark you as a contributor myyc <myyc@domain.xxx> according to your git commits?

myyc commented on 2024-02-04 03:18 (UTC)

@phrippy: the release notes say specifically "if you run into libclblast errors". it's not a bug in this package, it's a lmstudio issue that shows up in some machines. you're free to add your meta package to the aur and i'll recommend it here as a solution.

phrippy commented on 2024-02-01 16:32 (UTC)

Okay, now this is official recommendation, hehe.

Can you make something like this and add it as depends?

pkgname=clblast-local
pkgver=1.0
pkgrel=1
pkgdesc="Symlinks for clblast libraries to work with /usr/local/lib"
arch=('x86_64')
license=('custom')
depends=('clblast')

package() {
    # Create directory if it does not exist
    mkdir -p "${pkgdir}/usr/local/lib"

    # Creating symlinks
    ln -s /usr/lib/libclblast.so "${pkgdir}/usr/local/lib/libclblast.so"
    ln -s /usr/lib/libclblast.so.1 "${pkgdir}/usr/local/lib/libclblast.so.1"
}