File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -190,23 +190,23 @@ main() {
190190 install_system_packages " $USE_SUDO "
191191
192192 log_info " Installing PyTorch ..."
193- uv pip install torch==$PYTORCH_VERSION --index-url https://download.pytorch.org/whl/cu128
193+ pip install torch==$PYTORCH_VERSION --index-url https://download.pytorch.org/whl/cu128
194194
195195 # Install vLLM and its requirements
196- uv pip install -r .github/packaging/vllm_reqs_12_8.txt
197- uv pip install six
198- uv pip install " setuptools<80"
196+ pip install -r .github/packaging/vllm_reqs_12_8.txt
197+ pip install six
198+ pip install " setuptools<80"
199199 python -m pip install vllm --no-cache-dir --index-url https://download.pytorch.org/whl/preview/forge
200200
201201 # Install monarch
202- uv pip install torchmonarch==$MONARCH_VERSION
202+ pip install torchmonarch==$MONARCH_VERSION
203203
204204 # Install torchtitan and torchstore
205- uv pip install torchtitan==$TORCHTITAN_VERSION
206- uv pip install torchstore==$TORCHSTORE_VERSION
205+ pip install torchtitan==$TORCHTITAN_VERSION
206+ pip install torchstore==$TORCHSTORE_VERSION
207207
208208 log_info " Installing Forge from source..."
209- uv pip install -e " .[dev]"
209+ pip install -e " .[dev]"
210210
211211 # Set up environment
212212 log_info " Setting up environment..."
You can’t perform that action at this time.
0 commit comments