mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2026-03-02 22:57:05 -05:00
Debian glibc issue #25
Labels
No labels
Desktop
Docker
Integration Request
Integration Request
OS: Linux
OS: Mobile
OS: Windows
UI/UX
blocked
bug
bug
core-team-only
documentation
duplicate
embed-widget
enhancement
feature request
github_actions
good first issue
investigating
needs info / can't replicate
possible bug
question
stage: specifications
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/anything-llm#25
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @danglingptr0x0 on GitHub (Jun 12, 2023).
Hi,
First of all, great tool! Makes it easy to use an existing knowledge base and then dynamically ask about it using natural language. Wanted to build something like this myself, but you just saved me some time. Thank you!
But, after having fixed the requirements file as per #5, I have encountered an issue with libssl, which required manually building from source due to Debian not being a rolling distro. That fixed the libssl issue, but then, I encountered an issue with a version mismatch of glibc, which is apparently required by nodejs.
uname -a:Linux hostname 5.10.0-22-amd64 #1 SMP Debian 5.10.178-3 (2023-04-22) x86_64 GNU/LinuxThis err is raised when the frontend is launched and opened in a browser. I haven't been able to fix the glibc issue, as opposed to libssl. I am afraid that it would mess up my Debian install.
Thanks
@frasergr commented on GitHub (Jun 13, 2023):
I also had a bunch of issues when trying to get it running on a node Docker image which is based on Debian 11. I ended up using a recent Ubuntu LTS image and the issues went away. I think all the issues I encountered (and there were more than two you've come across) were related to the
vectordbpackage@danglingptr0x0 commented on GitHub (Jun 13, 2023):
@frasergr will try, thanks!
@danglingptr0x0 commented on GitHub (Jun 13, 2023):
Same issue under Ubuntu 20.04 (now running under distrobox)
I assume that the glibc issue would follow fixing this libssl issue, just like it did under my host.
Linux ubuntu-20-04.hostname 5.10.0-22-amd64 #1 SMP Debian 5.10.178-3 (2023-04-22) x86_64 x86_64 x86_64 GNU/Linux@frasergr commented on GitHub (Jun 13, 2023):
By recent Ubuntu LTS I meant 22.04 :)
Have a look at the Dockerfile to see if it may point you in the right direction for your use case:
github.com/Mintplex-Labs/anything-llm@4e242a339f/docker/Dockerfile@danglingptr0x0 commented on GitHub (Jun 13, 2023):
Yeah, my bad. I don't know why I assumed 20.04 😅
@danglingptr0x0 commented on GitHub (Jun 13, 2023):
Working for me under Debian 11 using distrobox to run Ubuntu 22.04.
Thanks, @frasergr!