open-webui v0.9.1 版本更新介绍
发布日期: 2026-04-21
版本号: v0.9.1
修复了通过pip或uv安装Open WebUI后,因缺少
aiosqlite和asyncpg依赖包而导致的启动崩溃问题。这两个依赖原本列在requirements.txt中,但未包含在发布包的元数据里,现已补全至pyproject.toml以确保自动安装。
更新内容 (中文)
已修复
- 🐛 缺失
aiosqlite依赖项。 通过在pyproject.toml中添加缺失的aiosqlite包,修复了通过pip或uv安装 Open WebUI 时出现的启动崩溃问题(ModuleNotFoundError: No module named 'aiosqlite')。该依赖项之前列在requirements.txt中,但未包含在已发布的包元数据中,因此不会自动安装。#23916 - 🐛 缺失
asyncpg依赖项。 在pyproject.toml中添加了缺失的asyncpg包,以防止 PostgreSQL 用户遇到相同的启动崩溃问题。与aiosqlite类似,该包存在于requirements.txt中,但未包含在已发布的包依赖项中。
更新内容 (原始)
Fixed
- 🐛 Missing
aiosqlitedependency. Fixed a startup crash (ModuleNotFoundError: No module named 'aiosqlite') when installing Open WebUI viapiporuvby adding the missingaiosqlitepackage topyproject.toml. The dependency was listed inrequirements.txtbut not in the published package metadata, so it was not installed automatically. #23916 - 🐛 Missing
asyncpgdependency. Added the missingasyncpgpackage topyproject.tomlto prevent the same startup crash for PostgreSQL users. Likeaiosqlite, it was present inrequirements.txtbut absent from the published package dependencies.