mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-01-13 22:18:36 +08:00
Signed-off-by: ZhanruiSunCh <184402041+ZhanruiSunCh@users.noreply.github.com> Signed-off-by: Zhanrui Sun <184402041+ZhanruiSunCh@users.noreply.github.com> Signed-off-by: Yanchao Lu <yanchaol@nvidia.com> Co-authored-by: Yanchao Lu <yanchaol@nvidia.com>
14 lines
273 B
Bash
14 lines
273 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
if [ -n "${GITHUB_MIRROR}" ]; then
|
|
export PIP_INDEX_URL="https://urm.nvidia.com/artifactory/api/pypi/pypi-remote/simple"
|
|
fi
|
|
pip3 install polygraphy==0.49.9
|
|
|
|
# Clean up pip cache and temporary files
|
|
pip3 cache purge
|
|
rm -rf ~/.cache/pip
|
|
rm -rf /tmp/*
|