Skip to content

Commit

Permalink
Update manual build instructions for Triton Inference Server (pull #1413
Browse files Browse the repository at this point in the history
)
  • Loading branch information
jbkyang-nvi committed Sep 14, 2023
1 parent 61a9b3b commit 22f66e5
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions tritonserver/README.md
Expand Up @@ -67,6 +67,20 @@ Now, this `models` directory will be our model repository.
$ wget https://archive.apache.org/dist/maven/maven-3/3.8.4/binaries/apache-maven-3.8.4-bin.tar.gz
$ tar zxvf apache-maven-3.8.4-bin.tar.gz
$ export PATH=/opt/tritonserver/apache-maven-3.8.4/bin:$PATH
# The CAPI Bindings will also need some additional dependencies
$ apt update && apt install -y gpg \
$ wget \
$ rapidjson-dev \
$ software-properties-common && \
$ wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | \
$ gpg --dearmor - | \
$ tee /usr/share/keyrings/kitware-archive-keyring.gpg >/dev/null && \
$ . /etc/os-release && \
$ echo "deb [signed-by=/usr/share/keyrings/kitware-archive-keyring.gpg] https://apt.kitware.com/ubuntu/ $UBUNTU_CODENAME main" | \
$ tee /etc/apt/sources.list.d/kitware.list >/dev/null && \
$ apt-get update && \
$ apt-get install -y --no-install-recommends cmake cmake-data

$ git clone https://github.com/bytedeco/javacpp-presets.git
$ cd javacpp-presets
```
Expand Down

0 comments on commit 22f66e5

Please sign in to comment.