Environment Setup

This section describes how to deploy GART locally.

Requirements

Install Dependencies

To simplify installing dependencies, we provide a script (scripts/install-deps.sh) for installing GART’s dependency environment.

1$ git clone https://github.com/GraphScope/GART.git gart
2$ cd gart
3$ ./scripts/install-deps.sh /path/to/your/installation # install dependencies

Compile and Install GART

1$ mkdir -p build; cd build
2$ cmake .. -DCMAKE_BUILD_TYPE=Release
3$ make -j
4$ sudo make install