Skip to content

Commit

Permalink
Merge pull request #70 from mdevino/document-fedora
Browse files Browse the repository at this point in the history
Documenting dependencies to install project on Fedora
  • Loading branch information
gkumbhat authored Jun 18, 2024
2 parents ab1bc23 + 4844aa4 commit 46c9ea6
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 46c9ea6

Please sign in to comment.