Package Details: chatbox-appimage 1.6.1-1

Git Clone URL: https://aur.archlinux.org/chatbox-appimage.git (read-only, click to copy)
Package Base: chatbox-appimage
Description: User-friendly Desktop Client App for AI Models/LLMs (GPT, Claude, Gemini, Ollama...)
Upstream URL: https://chatboxai.app
Keywords: chatgpt gpt3.5 gpt4 openai
Licenses: GPL-3.0
Conflicts: chatbox-bin, chatbox-git
Provides: chatbox-appimage
Submitter: frederikstroem
Maintainer: frederikstroem
Last Packager: frederikstroem
Votes: 5
Popularity: 0.56
First Submitted: 2023-04-26 17:28 (UTC)
Last Updated: 2024-11-16 22:23 (UTC)

Pinned Comments

frederikstroem commented on 2023-06-16 11:17 (UTC) (edited on 2023-10-25 19:11 (UTC) by frederikstroem)

I've set up some basic Python automation to automatically update the AUR packages I maintain for speedier update times. Currently, new updates are checked for once every hour.

The source code is still in an early iteration, so small hiccups are expected. The source code is available on GitHub.

Latest Comments

pif commented on 2024-10-11 12:26 (UTC) (edited on 2024-10-11 12:27 (UTC) by pif)

Is checksum correct?

==> Validating source files with sha512sums...
    Chatbox-1.5.0-x86_64.AppImage ... FAILED
==> ERROR: One or more files did not pass the validity check!

cqzw555 commented on 2024-07-03 03:04 (UTC)

Directly running 'Chatbox' will result in the following error:

dlopen(): error loading libfuse.so.2

AppImages require FUSE to run. 
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

Please add the dependency 'fuse2' 'fuse2fs' has changed its dependency from 'fuse' to 'fuse3' on May 21, which is probably why 'Chatbox' can not run directly.

timeandfate commented on 2024-05-17 08:53 (UTC)

diff --git a/PKGBUILD b/PKGBUILD
index 9e84c8c..fccddad 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -14,7 +14,7 @@ license=('GPL')
 depends=('fuse2fs')
 provides=("$pkgname")
 conflicts=("${_pkgname}-bin")
-options=(!strip)
+options=(!strip !debug)
 _appimage="${_pkgname}-${pkgver}-${arch}.AppImage"
 source=("${url}/releases/download/v${pkgver}/${_appimage}")
 noextract=("$_appimage")

I found this can resolve the problem after some experiments, although I'm unclear about the reason behind this.

frederikstroem commented on 2024-05-08 07:37 (UTC)

I am very sorry for my lack of responsiveness; I have been extremely busy writing my master's thesis and have not been able to dedicate as much time as I would like to proper maintenance of the AUR package.

I have managed to reproduce the issue on my end and have spent some time trying to identify its root cause. However, with the limited time I have had, I have not yet pinpointed the exact source of the problem.

I have not made any changes to the underlying PKGBUILD, so it is quite puzzling that the issue has arisen. I would greatly appreciate any feedback on a potential fix, but otherwise, I will investigate it further as soon as my thesis is completed!

// Frederik

songtianlun commented on 2024-05-08 02:58 (UTC)

I encountered the same issue where I found that the appimage file in the opt directory seemed to have been altered. When I manually replaced it, everything went back to normal. I tried checking the PKGBUILD file but couldn't find any suspicious areas.

➜  chatbox-appimage git:(master) ✗ ls -lha /opt/Chatbox/Chatbox-1.3.6-x86_64.AppImage 
-rwxr-xr-x 1 root root 184K  5月 8日 10:53 /opt/Chatbox/Chatbox-1.3.6-x86_64.AppImage*
➜  chatbox-appimage git:(master) ✗ sudo cp Chatbox-1.3.6-x86_64.AppImage /opt/Chatbox/Chatbox-1.3.6-x86_64.AppImage
➜  chatbox-appimage git:(master) ✗ ls -lha /opt/Chatbox/Chatbox-1.3.6-x86_64.AppImage
-rwxr-xr-x 1 root root 99M  5月 8日 10:54 /opt/Chatbox/Chatbox-1.3.6-x86_64.AppImage*

Moelf commented on 2024-04-19 01:25 (UTC)

Now running into problem of:

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

punkdevrobot commented on 2023-12-21 15:08 (UTC)

Thank you @frederikstroem for your quick reply. Thank you for your pointers. It didn't work for me but it worked after rebooting the system. Bit strange but I have it working now :)

frederikstroem commented on 2023-12-21 11:51 (UTC)

Hi @kuba-gaj,

I haven't been able to replicate the issue on my end. 🫤 Maybe you could try clearing the package cache and reinstalling?

rm -rf ~/.cache/yay/chatbox-appimage
yay -S chatbox-appimage

I hope that resolves the issue!

punkdevrobot commented on 2023-12-21 11:14 (UTC)

I have an error during installation: /home/kuba/.cache/yay/chatbox-appimage/PKGBUILD: line 25: ./Chatbox-1.2.1-x86_64.AppImage: cannot execute: required file not found
==> ERROR: A failure occurred in prepare().
Aborting...
-> error making: chatbox-appimage-exit status 4

frederikstroem commented on 2023-06-16 11:17 (UTC) (edited on 2023-10-25 19:11 (UTC) by frederikstroem)

I've set up some basic Python automation to automatically update the AUR packages I maintain for speedier update times. Currently, new updates are checked for once every hour.

The source code is still in an early iteration, so small hiccups are expected. The source code is available on GitHub.