You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Set up environment variables to get pre-built wheels. If there are internet problems, just download the whl file manually. And set VLLM_PRECOMPILED_WHEEL_LOCATION as your local absolute path of whl file.
Install vllm with command below (If you have no existing PyTorch).
67
76
```bash
68
77
uv pip install --editable .
69
78
```
70
79
80
+
Install vllm with command below (If you already have PyTorch).
81
+
```bash
82
+
python use_existing_torch.py
83
+
uv pip install -r requirements/build.txt
84
+
uv pip install --no-build-isolation --editable .
85
+
```
86
+
87
+
### Verification for successful installation of vLLM
88
+
Just run the command below. If no error, it demonstrates that the installation is successfull.
89
+
```bash
90
+
python -c "import vllm._C"
91
+
```
92
+
71
93
### Installation of vLLM-omni
72
94
Install additional requirements for vllm-omni
73
95
```bash
@@ -88,11 +110,6 @@ bash run.sh
88
110
```
89
111
The output audio is saved in ./output_audio
90
112
91
-
## To-do list
92
-
-[x] Offline inference example for Qwen2.5-omni with single request
93
-
-[ ] Adaptation from current vllm branch to stable vllm v0.11.0
94
-
-[ ] Offline inference example for Qwen2.5-omni with streaming multiple requests
95
-
-[ ] Online inference support
96
-
-[ ] Support for other models
113
+
## Further details
97
114
98
-
For detailed model management, see [vllm_omni_design.md](docs/architecture/vllm_omni_design.md) and [high_level_arch_design.md](docs/architecture/high_level_arch_design.md).
115
+
For detailed architecture design, see [vllm_omni_design.md](docs/architecture/vllm_omni_design.md) and [high_level_arch_design.md](docs/architecture/high_level_arch_design.md).
Set up environment variables to get pre-built wheels. If there are internet problems, just download the whl file manually. And set VLLM_PRECOMPILED_WHEEL_LOCATION as your local absolute path of whl file.
0 commit comments