1. 一键安装包(推荐)
前往 Releases 下载对应平台的整合包,内置 Python 和 Node.js 运行时,无需安装任何额外软件。
macOS / Linux:
start.bat
在浏览器中打开 http://localhost:8000,所有配置均在 Web 界面中完成。
2. Docker安装
构建镜像:http://localhost:8000。
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
| 平台 | 架构 | 文件 |
|---|---|---|
| macOS | Apple Silicon (M1/M2/M3/M4) | aurogen-x.x.x-macos-arm64.tar.gz |
| Linux | ARM64 | aurogen-x.x.x-linux-arm64.tar.gz |
| Linux | x86_64 | aurogen-x.x.x-linux-x64.tar.gz |
| Windows | x64 | aurogen-x.x.x-windows-x64.zip |
tar -xzf aurogen-x.x.x-<平台>.tar.gz
cd aurogen-x.x.x-<平台>
bash start.sh
start.bat
在浏览器中打开 http://localhost:8000,所有配置均在 Web 界面中完成。
docker build -t aurogen .
docker run --rm -p 8000:8000 \
-v "$(pwd)/aurogen/.workspace:/app/aurogen/.workspace" \
aurogen
http://localhost:8000。
docker compose up -d --build
# 创建环境
conda create -n aurogen python=3.12
# 安装依赖
conda activate aurogen && cd ./aurogen && pip install -r requirements.txt
# 启动服务
uvicorn app.app:app --host 0.0.0.0 --port 8000 --reload
cd ./aurogen_web && npm i
npm run dev