File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,7 @@ print('Done!')
93
93
"
94
94
95
95
# Install vllm
96
+ # gputil is for rayWorker in vllm to run as non-root
96
97
export VLLM_CACHE=/workspace/.vllm_cache
97
98
cd /h2ogpt_conda && python -m venv vllm_env --system-site-packages
98
99
sp=` python3.10 -c ' import site; print(site.getsitepackages()[0])' ` && \
@@ -110,7 +111,7 @@ sp=`python3.10 -c 'import site; print(site.getsitepackages()[0])'` && \
110
111
find openai_vllm -name ' *.py' | xargs sed -i ' s/OpenAI/vLLM/g' && \
111
112
cd /h2ogpt_conda && \
112
113
python -m venv vllm_env --system-site-packages && \
113
- /h2ogpt_conda/vllm_env/bin/python -m pip install vllm ray pandas --extra-index-url https://download.pytorch.org/whl/cu118 && \
114
+ /h2ogpt_conda/vllm_env/bin/python -m pip install vllm ray pandas gputil==1.4.0 --extra-index-url https://download.pytorch.org/whl/cu118 && \
114
115
mkdir $VLLM_CACHE
115
116
chmod -R a+rwx /h2ogpt_conda
116
117
Original file line number Diff line number Diff line change @@ -66,9 +66,6 @@ text-generation==0.6.0
66
66
# for tokenization when don't have HF tokenizer
67
67
tiktoken == 0.4.0
68
68
69
- # for rayWorker in vllm to run as non-root
70
- gputil == 1.4.0
71
-
72
69
requests >= 2.31.0
73
70
urllib3 >= 1.26.16
74
71
filelock >= 3.12.2
You can’t perform that action at this time.
0 commit comments