Skip to content

Commit

Permalink
Attempting to fix faulty pip install for tritonfrontend wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
KrishnanPrash committed Aug 28, 2024
1 parent c904300 commit a7a7f58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile.QA
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ RUN find qa/pkgs/ -maxdepth 1 -type f -name \
"tritonserver-*.whl" | xargs -I {} pip3 install --upgrade {}[all]

# Install Triton Frontend Python API
RUN find qa/pkgs/ -name "tritonfrontend-*.whl" -exec pip3 install --upgrade {}[all]
RUN find qa/pkgs/ -type f -name "tritonfrontend-*.whl" -exec pip3 install --upgrade {}[all]

ENV LD_LIBRARY_PATH /opt/tritonserver/qa/clients:${LD_LIBRARY_PATH}

Expand Down

0 comments on commit a7a7f58

Please sign in to comment.