[](https://opensource.org/licenses/BSD-3-Clause)
# Triton Inference Server Common
Common source, scripts and utilities shared across all Triton
repositories.
This repo is not typically built directly but is instead included in
the build of other repos. To build directly first install the required
dependencies.
```
$ apt-get install rapidjson-dev
```
Use cmake 3.17 or later to build and install in a local directory.
```
$ mkdir build
$ cd build
$ cmake -DCMAKE_INSTALL_PREFIX:PATH=`pwd`/install ..
$ make install
```