diff --git a/README.md b/README.md index 2474f666..d9d30c84 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,22 @@ Orchestrator server for invocation of detectors on text generation input and out ## Getting Started Make sure Rust and Cargo are [installed](https://doc.rust-lang.org/cargo/getting-started/installation.html). +Make sure you install protobuf. + +### Instructions for Fedora +```sh +# Install system dependencies +sudo dnf install git rustup gcc perl + +# Install protoc +PROTOC_VERSION=26.0 +cd /tmp +curl -L -O https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOC_VERSION}/protoc-${PROTOC_VERSION}-linux-x86_64.zip +unzip protoc-*.zip -d /usr/local && rm protoc-*.zip + +# Install Rust tools +rustup-init -y +. ~/.bashrc # If you're on bash, so commands rustc and cargo become available. To build and install the binary locally: ```sh