From aa274822a0703cd4e5c1f16f48ba946d3cecccf3 Mon Sep 17 00:00:00 2001 From: Shi Xiaowei Date: Wed, 18 Oct 2023 23:17:58 -0700 Subject: [PATCH] add git-lfs dependency for binaries --- docs/source/installation.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/source/installation.md b/docs/source/installation.md index 7423954022a0..9d785bcdcfa2 100644 --- a/docs/source/installation.md +++ b/docs/source/installation.md @@ -28,9 +28,14 @@ for the NVIDIA platform can be found The first step to build TensorRT-LLM is to fetch the sources: ```bash +# TensorRT-LLM uses git-lfs, which needs to be installed in advance. +apt-get update && apt-get -y install git git-lfs + git clone https://github.com/NVIDIA/TensorRT-LLM.git cd TensorRT-LLM git submodule update --init --recursive +git lfs install +git lfs pull ``` ## Build TensorRT-LLM in One Step