Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update readme to include installation of additional dependenceis #1413

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions tritonserver/README.md
Original file line number Diff line number Diff line change
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