mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-01-14 06:27:45 +08:00
* Update TensorRT-LLM --------- Co-authored-by: 0xymoro <jerrymeng100@gmail.com> Co-authored-by: Shixiaowei02 <39303645+Shixiaowei02@users.noreply.github.com>
12 lines
402 B
Bash
12 lines
402 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
MPI4PY_VERSION="3.1.5"
|
|
RELEASE_URL="https://github.com/mpi4py/mpi4py/archive/refs/tags/${MPI4PY_VERSION}.tar.gz"
|
|
curl -L ${RELEASE_URL} | tar -zx -C /tmp
|
|
# Bypassing compatibility issues with higher versions (>= 69) of setuptools.
|
|
sed -i 's/>= 40\.9\.0/>= 40.9.0, < 69/g' /tmp/mpi4py-${MPI4PY_VERSION}/pyproject.toml
|
|
pip3 install /tmp/mpi4py-${MPI4PY_VERSION}
|
|
rm -rf /tmp/mpi4py*
|