mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-06 10:58:17 -05:00
[GH-ISSUE #17048] issue: uv with postgresql fails on 0.6.26 due to psycopg2 requirement missing #56819
Reference in New Issue
Block a user
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 @athoik on GitHub (Aug 29, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/17048
Check Existing Issues
Installation Method
Other
Open WebUI Version
v0.6.26
Ollama Version (if applicable)
No response
Operating System
Debian 12
Browser (if applicable)
No response
Confirmation
README.md.Expected Behavior
Updating the open-webui via uv package manager should work out of the box, wth postgresql.
Actual Behavior
Currently when using open-webui==0.6.26 (or open-webui@latest) it fails because the postgresql driver is not installed.
Steps to Reproduce
DATABASE_URL=....)Logs & Screenshots
Additional Information
Do we have to install manually the
psycopg2starting with v0.6.26 or use different syntax withuv?@athoik commented on GitHub (Aug 30, 2025):
The following syntax works for me:
I guess a note can be added in docs: https://docs.openwebui.com/#2-run-open-webui
@athoik commented on GitHub (Aug 30, 2025):
PR created on docs: https://github.com/open-webui/docs/pull/673
@rgaricano commented on GitHub (Aug 30, 2025):
Yes, in last release some libs now are optionals in pyproject:
2407d9b905/pyproject.toml (L143-L158)(but its are instaled if
pip install -r backend/requeriments.txt)