Unverified Commit 87d5abef authored by Jie Fu (傅杰)'s avatar Jie Fu (傅杰) Committed by GitHub
Browse files

[Bugfix] Fix a bug caused by pip install setuptools>=49.4.0 for CPU backend (#5249)

parent ec784b25
...@@ -7,7 +7,7 @@ RUN apt-get update -y \ ...@@ -7,7 +7,7 @@ RUN apt-get update -y \
&& update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 10 --slave /usr/bin/g++ g++ /usr/bin/g++-12 && update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 10 --slave /usr/bin/g++ g++ /usr/bin/g++-12
RUN pip install --upgrade pip \ RUN pip install --upgrade pip \
&& pip install wheel packaging ninja setuptools>=49.4.0 numpy && pip install wheel packaging ninja "setuptools>=49.4.0" numpy
FROM cpu-test-1 AS build FROM cpu-test-1 AS build
......
...@@ -54,7 +54,7 @@ Build from source ...@@ -54,7 +54,7 @@ Build from source
.. code-block:: console .. code-block:: console
$ pip install --upgrade pip $ pip install --upgrade pip
$ pip install wheel packaging ninja setuptools>=49.4.0 numpy $ pip install wheel packaging ninja "setuptools>=49.4.0" numpy
$ pip install -v -r requirements-cpu.txt --extra-index-url https://download.pytorch.org/whl/cpu $ pip install -v -r requirements-cpu.txt --extra-index-url https://download.pytorch.org/whl/cpu
- Finally, build and install vLLM CPU backend: - Finally, build and install vLLM CPU backend:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment