Skip to content

Commit

Permalink
Install required packages for example models
Browse files Browse the repository at this point in the history
  • Loading branch information
krishung5 committed Oct 11, 2023
1 parent 3df0787 commit 2e262e1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -1355,6 +1355,14 @@ def dockerfile_prepare_container_linux(argmap, backends, enable_gpu, target_mach
fi
RUN pip cache purge
# Install required packages for example models
RUN python3 -m pip install --upgrade pip && \
pip3 install transformers && \
pip3 install torch && \
pip3 install tritonclient[all] && \
pip3 install pandas && \
pip3 install tabulate
ENV LD_LIBRARY_PATH=/usr/local/tensorrt/lib/:/opt/tritonserver/backends/tensorrtllm:$LD_LIBRARY_PATH
"""

Expand Down

0 comments on commit 2e262e1

Please sign in to comment.