pip安装open webui报错
报错信息
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://mirrors.aliyun.com/pypi/simple/
ERROR: Could not find a version that satisfies the requirement open-webui (from versions: none)
ERROR: No matching distribution found for open-webui
原来是,OpenWebui只支持Python3.11
解决方案:https://github.com/open-webui/open-webui/discussions/2596
用pipx install --fetch-missing-python --python 3.11 open-webui安装即可!