[GH-ISSUE #20141] issue: [all] extras has conflicting pymilvus==2.6.4 AND ==2.6.5 pins #34627

Closed
opened 2026-04-25 08:42:12 -05:00 by GiteaMirror · 2 comments
Owner

Originally created by @ProfessorCyberRIsk on GitHub (Dec 23, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/20141

Check Existing Issues

  • I have searched for any existing and/or related issues.
  • I have searched for any existing and/or related discussions.
  • I have also searched in the CLOSED issues AND CLOSED discussions and found no related items (your issue might already be addressed on the development branch!).
  • I am using the latest version of Open WebUI.

Installation Method

Other

Open WebUI Version

0.6.43

Ollama Version (if applicable)

No response

Operating System

debian 13

Browser (if applicable)

No response

Confirmation

  • I have read and followed all instructions in README.md.
  • I am using the latest version of both Open WebUI and Ollama.
  • I have included the browser console logs.
  • I have included the Docker container logs.
  • I have provided every relevant configuration, setting, and environment variable used in my setup.
  • I have clearly listed every relevant configuration, custom setting, environment variable, and command-line option that influences my setup (such as Docker Compose overrides, .env values, browser settings, authentication configurations, etc).
  • I have documented step-by-step reproduction instructions that are precise, sequential, and leave nothing to interpretation. My steps:
  • Start with the initial platform/version/OS and dependencies used,
  • Specify exact install/launch/configure commands,
  • List URLs visited, user input (incl. example values/emails/passwords if needed),
  • Describe all options and toggles enabled or changed,
  • Include any files or environmental changes,
  • Identify the expected and actual result at each stage,
  • Ensure any reasonably skilled user can follow and hit the same issue.

Expected Behavior

using UV with the open-webui[all]@latest serve should update openweb to the most current available version

Actual Behavior

using the tag above fails with :
Started openwebui.service - Open WebUI Service.
× No solution found when resolving tool dependencies:
╰─▶ Because open-webui[all]==0.6.43 depends on pymilvus==2.6.4 and
pymilvus==2.6.5, we can conclude that open-webui[all]==0.6.43 cannot
be used.

Steps to Reproduce

Open WebUI Installation with uv on LXC (PostgreSQL Support + Systemd Service)

Prerequisites

  • LXC container running as root
  • Network access
  • PostgreSQL server accessible (with DATABASE_URL configured)

Step 1: Install uv

curl -LsSf https://astral.sh/uv/install.sh | sh

Verify installation:

/root/.local/bin/uvx --version

Step 2: Create Data Directory and .env File

mkdir -p /root/.open-webui

Create /root/.open-webui/.env:

DATABASE_URL=postgresql://user:password@host:port/dbname
WEBUI_SECRET_KEY=your-secret-key-here
DATA_DIR=/root/.open-webui

PostgreSQL Setup (run on your DB server):

CREATE DATABASE openwebui;
CREATE USER openwebui WITH PASSWORD 'yourpassword';
GRANT ALL PRIVILEGES ON DATABASE openwebui TO openwebui;
CREATE EXTENSION IF NOT EXISTS vector;

Step 3: Test Manual Installation

/root/.local/bin/uvx --env-file /root/.open-webui/.env --python 3.11 open-webui[all]@latest serve

Verify Open WebUI works at http://your-lxc-ip:8080

Step 4: Create Systemd Service

Create /etc/systemd/system/openwebui.service:

[Unit]
Description=Open WebUI Service
After=network.target

[Service]
Type=simple
Environment=UV_ENV_FILE=/root/.open-webui/.env
Environment=DATA_DIR=/root/.open-webui
ExecStart=/root/.local/bin/uvx --env-file /root/.open-webui/.env --python 3.11 open-webui[all]@latest serve
Restart=on-failure
RestartSec=5
WorkingDirectory=/root

[Install]
WantedBy=multi-user.target

Step 5: Enable and Start Service

systemctl daemon-reload
systemctl enable openwebui.service
systemctl start openwebui.service

Step 6: Verify Service

systemctl status openwebui.service

Expected output: Active: active (running)

Logs & Screenshots

Dec 22 10:35:38 openwebui systemd[1]: Started openwebui.service - Open WebUI Service.
Dec 22 10:35:38 openwebui uvx[1338]: × No solution found when resolving tool dependencies:
Dec 22 10:35:38 openwebui uvx[1338]: ╰─▶ Because open-webui[all]==0.6.43 depends on pymilvus==2.6.4 and
Dec 22 10:35:38 openwebui uvx[1338]: pymilvus==2.6.5, we can conclude that open-webui[all]==0.6.43 cannot
Dec 22 10:35:38 openwebui uvx[1338]: be used.
Dec 22 10:35:38 openwebui uvx[1338]: And because only the following versions of open-webui[all] are
Dec 22 10:35:38 openwebui uvx[1338]: available:
Dec 22 10:35:38 openwebui uvx[1338]: open-webui[all]==0.6.41
Dec 22 10:35:38 openwebui uvx[1338]: open-webui[all]==0.6.42
Dec 22 10:35:38 openwebui uvx[1338]: open-webui[all]==0.6.43
Dec 22 10:35:38 openwebui uvx[1338]: we can conclude that all versions of open-webui[all] depend on
Dec 22 10:35:38 openwebui uvx[1338]: open-webui<=0.6.42.
Dec 22 10:35:38 openwebui uvx[1338]: And because you require open-webui[all] and open-webui==0.6.43, we can
Dec 22 10:35:38 openwebui uvx[1338]: conclude that your requirements are unsatisfiable.
Dec 22 10:35:38 openwebui uvx[1338]: hint: Pre-releases are available for open-webui in the requested
Dec 22 10:35:38 openwebui uvx[1338]: range (e.g., 0.6.26.dev1), but pre-releases weren't enabled (try:
Dec 22 10:35:38 openwebui uvx[1338]: --prerelease=allow)
Dec 22 10:35:38 openwebui systemd[1]: openwebui.service: Main process exited, code=exited, status=1/FAILURE
Dec 22 10:35:38 openwebui systemd[1]: openwebui.service: Failed with result 'exit-code'.
Dec 22 10:35:38 openwebui systemd[1]: openwebui.service: Consumed 177ms CPU time, 135.9M memory peak.
Dec 22 10:35:39 openwebui systemd[1]: openwebui.service: Scheduled restart job, restart counter is at 5.
Dec 22 10:35:39 openwebui systemd[1]: openwebui.service: Start request repeated too quickly.
Dec 22 10:35:39 openwebui systemd[1]: openwebui.service: Failed with result 'exit-code'.
Dec 22 10:35:39 openwebui systemd[1]: Failed to start openwebui.service - Open WebUI Service.

Additional Information

FIX THIS in the pyproject.toml

pyproject.toml lines 153, 155:
pymilvus==2.6.4
pymilvus==2.6.5

Remove one

Originally created by @ProfessorCyberRIsk on GitHub (Dec 23, 2025). Original GitHub issue: https://github.com/open-webui/open-webui/issues/20141 ### Check Existing Issues - [x] I have searched for any existing and/or related issues. - [x] I have searched for any existing and/or related discussions. - [x] I have also searched in the CLOSED issues AND CLOSED discussions and found no related items (your issue might already be addressed on the development branch!). - [x] I am using the latest version of Open WebUI. ### Installation Method Other ### Open WebUI Version 0.6.43 ### Ollama Version (if applicable) _No response_ ### Operating System debian 13 ### Browser (if applicable) _No response_ ### Confirmation - [x] I have read and followed all instructions in `README.md`. - [x] I am using the latest version of **both** Open WebUI and Ollama. - [x] I have included the browser console logs. - [x] I have included the Docker container logs. - [x] I have **provided every relevant configuration, setting, and environment variable used in my setup.** - [x] I have clearly **listed every relevant configuration, custom setting, environment variable, and command-line option that influences my setup** (such as Docker Compose overrides, .env values, browser settings, authentication configurations, etc). - [x] I have documented **step-by-step reproduction instructions that are precise, sequential, and leave nothing to interpretation**. My steps: - Start with the initial platform/version/OS and dependencies used, - Specify exact install/launch/configure commands, - List URLs visited, user input (incl. example values/emails/passwords if needed), - Describe all options and toggles enabled or changed, - Include any files or environmental changes, - Identify the expected and actual result at each stage, - Ensure any reasonably skilled user can follow and hit the same issue. ### Expected Behavior using UV with the open-webui[all]@latest serve should update openweb to the most current available version ### Actual Behavior using the tag above fails with : Started openwebui.service - Open WebUI Service. × No solution found when resolving tool dependencies: ╰─▶ Because open-webui[all]==0.6.43 depends on pymilvus==2.6.4 and pymilvus==2.6.5, we can conclude that open-webui[all]==0.6.43 cannot be used. ### Steps to Reproduce # Open WebUI Installation with uv on LXC (PostgreSQL Support + Systemd Service) ## Prerequisites - LXC container running as root - Network access - PostgreSQL server accessible (with `DATABASE_URL` configured) ## Step 1: Install uv ```bash curl -LsSf https://astral.sh/uv/install.sh | sh ``` Verify installation: ```bash /root/.local/bin/uvx --version ``` ## Step 2: Create Data Directory and .env File ```bash mkdir -p /root/.open-webui ``` Create `/root/.open-webui/.env`: ``` DATABASE_URL=postgresql://user:password@host:port/dbname WEBUI_SECRET_KEY=your-secret-key-here DATA_DIR=/root/.open-webui ``` **PostgreSQL Setup (run on your DB server):** ```sql CREATE DATABASE openwebui; CREATE USER openwebui WITH PASSWORD 'yourpassword'; GRANT ALL PRIVILEGES ON DATABASE openwebui TO openwebui; CREATE EXTENSION IF NOT EXISTS vector; ``` ## Step 3: Test Manual Installation ```bash /root/.local/bin/uvx --env-file /root/.open-webui/.env --python 3.11 open-webui[all]@latest serve ``` Verify Open WebUI works at `http://your-lxc-ip:8080` ## Step 4: Create Systemd Service Create `/etc/systemd/system/openwebui.service`: ```ini [Unit] Description=Open WebUI Service After=network.target [Service] Type=simple Environment=UV_ENV_FILE=/root/.open-webui/.env Environment=DATA_DIR=/root/.open-webui ExecStart=/root/.local/bin/uvx --env-file /root/.open-webui/.env --python 3.11 open-webui[all]@latest serve Restart=on-failure RestartSec=5 WorkingDirectory=/root [Install] WantedBy=multi-user.target ``` ## Step 5: Enable and Start Service ```bash systemctl daemon-reload systemctl enable openwebui.service systemctl start openwebui.service ``` ## Step 6: Verify Service ```bash systemctl status openwebui.service ``` **Expected output:** `Active: active (running)` ### Logs & Screenshots Dec 22 10:35:38 openwebui systemd[1]: Started openwebui.service - Open WebUI Service. Dec 22 10:35:38 openwebui uvx[1338]: × No solution found when resolving tool dependencies: Dec 22 10:35:38 openwebui uvx[1338]: ╰─▶ Because open-webui[all]==0.6.43 depends on pymilvus==2.6.4 and Dec 22 10:35:38 openwebui uvx[1338]: pymilvus==2.6.5, we can conclude that open-webui[all]==0.6.43 cannot Dec 22 10:35:38 openwebui uvx[1338]: be used. Dec 22 10:35:38 openwebui uvx[1338]: And because only the following versions of open-webui[all] are Dec 22 10:35:38 openwebui uvx[1338]: available: Dec 22 10:35:38 openwebui uvx[1338]: open-webui[all]==0.6.41 Dec 22 10:35:38 openwebui uvx[1338]: open-webui[all]==0.6.42 Dec 22 10:35:38 openwebui uvx[1338]: open-webui[all]==0.6.43 Dec 22 10:35:38 openwebui uvx[1338]: we can conclude that all versions of open-webui[all] depend on Dec 22 10:35:38 openwebui uvx[1338]: open-webui<=0.6.42. Dec 22 10:35:38 openwebui uvx[1338]: And because you require open-webui[all] and open-webui==0.6.43, we can Dec 22 10:35:38 openwebui uvx[1338]: conclude that your requirements are unsatisfiable. Dec 22 10:35:38 openwebui uvx[1338]: hint: Pre-releases are available for `open-webui` in the requested Dec 22 10:35:38 openwebui uvx[1338]: range (e.g., 0.6.26.dev1), but pre-releases weren't enabled (try: Dec 22 10:35:38 openwebui uvx[1338]: `--prerelease=allow`) Dec 22 10:35:38 openwebui systemd[1]: openwebui.service: Main process exited, code=exited, status=1/FAILURE Dec 22 10:35:38 openwebui systemd[1]: openwebui.service: Failed with result 'exit-code'. Dec 22 10:35:38 openwebui systemd[1]: openwebui.service: Consumed 177ms CPU time, 135.9M memory peak. Dec 22 10:35:39 openwebui systemd[1]: openwebui.service: Scheduled restart job, restart counter is at 5. Dec 22 10:35:39 openwebui systemd[1]: openwebui.service: Start request repeated too quickly. Dec 22 10:35:39 openwebui systemd[1]: openwebui.service: Failed with result 'exit-code'. Dec 22 10:35:39 openwebui systemd[1]: Failed to start openwebui.service - Open WebUI Service. ### Additional Information FIX THIS in the pyproject.toml pyproject.toml lines 153, 155: pymilvus==2.6.4 pymilvus==2.6.5 # Remove one
GiteaMirror added the bug label 2026-04-25 08:42:12 -05:00
Author
Owner

@owui-terminator[bot] commented on GitHub (Dec 23, 2025):

🔍 Similar Issues Found

I found some existing issues that might be related to this one. Please check if any of these are duplicates or contain helpful solutions:

  1. #20128 issue: Characters are broken in 0.6.43
    by frenzybiscuit • Dec 22, 2025 • bug

  2. #20107 issue:
    by mengdeer589 • Dec 22, 2025 • bug

  3. #20046 issue:
    by pierrelouisbescond • Dec 19, 2025 • bug

  4. #19861 issue:
    by QuitHub • Dec 10, 2025 • bug

  5. #19877 issue:
    by dotmobo • Dec 11, 2025 • bug

Show 5 more related issues
  1. #19864 issue:
    by Haervwe • Dec 10, 2025 • bug

  2. #20092 issue:
    by VideoRyan • Dec 22, 2025 • bug

  3. #20019 issue:
    by j63440490 • Dec 17, 2025 • bug

  4. #19563 issue:
    by naruto7g • Nov 28, 2025 • bug

  5. #19211 issue:
    by Byrnes9 • Nov 16, 2025 • bug


💡 Tips:

  • If this is a duplicate, please consider closing this issue and adding any additional details to the existing one
  • If you found a solution in any of these issues, please share it here to help others

This comment was generated automatically by a bot. Please react with a 👍 if this comment was helpful, or a 👎 if it was not.

<!-- gh-comment-id:3686790449 --> @owui-terminator[bot] commented on GitHub (Dec 23, 2025): 🔍 **Similar Issues Found** I found some existing issues that might be related to this one. Please check if any of these are duplicates or contain helpful solutions: 1. [#20128](https://github.com/open-webui/open-webui/issues/20128) **issue: Characters are broken in 0.6.43** *by frenzybiscuit • Dec 22, 2025 • `bug`* 2. [#20107](https://github.com/open-webui/open-webui/issues/20107) **issue:** *by mengdeer589 • Dec 22, 2025 • `bug`* 3. [#20046](https://github.com/open-webui/open-webui/issues/20046) **issue:** *by pierrelouisbescond • Dec 19, 2025 • `bug`* 4. [#19861](https://github.com/open-webui/open-webui/issues/19861) **issue:** *by QuitHub • Dec 10, 2025 • `bug`* 5. [#19877](https://github.com/open-webui/open-webui/issues/19877) **issue:** *by dotmobo • Dec 11, 2025 • `bug`* <details> <summary>Show 5 more related issues</summary> 6. [#19864](https://github.com/open-webui/open-webui/issues/19864) **issue:** *by Haervwe • Dec 10, 2025 • `bug`* 7. [#20092](https://github.com/open-webui/open-webui/issues/20092) **issue:** *by VideoRyan • Dec 22, 2025 • `bug`* 8. [#20019](https://github.com/open-webui/open-webui/issues/20019) **issue:** *by j63440490 • Dec 17, 2025 • `bug`* 9. [#19563](https://github.com/open-webui/open-webui/issues/19563) **issue:** *by naruto7g • Nov 28, 2025 • `bug`* 10. [#19211](https://github.com/open-webui/open-webui/issues/19211) **issue:** *by Byrnes9 • Nov 16, 2025 • `bug`* </details> --- 💡 **Tips:** - If this is a duplicate, please consider closing this issue and adding any additional details to the existing one - If you found a solution in any of these issues, please share it here to help others *This comment was generated automatically by a bot.* Please react with a 👍 if this comment was helpful, or a 👎 if it was not.
Author
Owner

@tjbck commented on GitHub (Dec 26, 2025):

Addressed in dev.

<!-- gh-comment-id:3692946430 --> @tjbck commented on GitHub (Dec 26, 2025): Addressed in dev.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#34627