openwebui二改界面环境搭建
1、下载源码
https://github.com/open-webui/open-webui
2、编译前端
npm i
npm run dev
注意版本要求:
- Python Version: Python 3.11+
- Node.js Version: 20.10+
浏览器访问:http://localhost:5173/
3、编译后端
cd backend
conda create --name open-webui python=3.11
conda activate open-webui
pip install -r requirements.txt -U
# windows 执行
start_windows.bat
# linux 执行
sh dev.sh
后端首次执行时,会去huggingface下载模型,网络原因,需要梯子。
参考:🛠️ Development Guide | Open WebUI