File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -30,18 +30,16 @@ We recommend setting up a virtual environment to get all of your dependencies is
30
30
virtualenv arctic-venv
31
31
source arctic-venv/bin/activate
32
32
33
- # faster ckpt download speed
33
+ # Faster ckpt download speed.
34
34
pip install huggingface_hub[hf_transfer]
35
35
36
- # clone vllm repo and checkout arctic branch
37
- git clone -b arctic https://github.com/Snowflake-Labs/vllm.git
38
- cd vllm
39
- pip install -e .
36
+ # Install vLLM main branch.
37
+ pip install git+https://github.com/vllm-project/vllm.git
40
38
41
- # clone Hugging Face and checkout arctic branch
39
+ # Clone HuggingFace and checkout the arctic branch. Alternatively, you may skip this step and load Arctic into vLLM using trust_remote_code=True.
42
40
git clone -b arctic https://github.com/Snowflake-Labs/transformers.git
43
41
44
- # install deepspeed
42
+ # Install deepspeed.
45
43
pip install deepspeed> =0.14.2
46
44
```
47
45
You can’t perform that action at this time.
0 commit comments