Skip to content

Commit 54f1ef4

Browse files
committed
Fix outdated installation instructions for Emu3.5
Update installation method to use vLLM-FL backend instead of the removed patch mechanism, aligning with the v1.0.0-alpha.0 refactor that moved hardware-specific support to plugin repositories. Changes: - Remove obsolete tools/patch/unpatch.py command - Update to use vLLM-FL backend installation - Align with docs/getting-started.md instructions Fixes: Documentation inconsistency after v1.0.0-alpha.0 refactor
1 parent 74ef1bd commit 54f1ef4

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

examples/emu3.5/conf/README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,16 @@ vLLM implementation of https://github.com/baaivision/Emu3.5
55
## Environment Setup
66

77
### Install FlagScale
8-
- Build from source code base on vLLM tag/0.11.0
8+
- Install FlagScale and vLLM-FL backend (based on vLLM)
99
```bash
1010
git clone https://github.com/flagos-ai/FlagScale.git
11-
cd FlgScale
12-
python tools/patch/unpatch.py --backend vllm
13-
cd FlagScale/third_party/vllm
14-
pip install -r requirements/cuda.txt --no-cache-dir
15-
MAX_JOBS=32 pip install --no-build-isolation -v .
11+
cd FlagScale
12+
pip install . --verbose
13+
14+
# Install vLLM-FL backend
15+
git clone https://github.com/flagos-ai/vllm-FL
16+
cd vllm-FL
17+
pip install -e .
1618
```
1719

1820
### Prepare Emu3.5

0 commit comments

Comments
 (0)