The recommended way to install rtfkit is to download a prebuilt binary from GitHub Releases.
Stable releases currently ship the following binary archives:
rtfkit-x86_64-unknown-linux-gnu.tar.gzrtfkit-aarch64-unknown-linux-gnu.tar.gzrtfkit-x86_64-apple-darwin.tar.gzrtfkit-aarch64-apple-darwin.tar.gzrtfkit-x86_64-pc-windows-msvc.zip
Each release also includes per-archive SHA256 checksum files.
-
Download the archive for your platform from GitHub Releases.
-
Extract the archive:
tar xzf rtfkit-<target>.tar.gz
-
Move the binary to a directory on your
PATH, for example:install -m 755 rtfkit /usr/local/bin/rtfkit
-
Verify the installation:
rtfkit --help
-
Download
rtfkit-x86_64-pc-windows-msvc.zipfrom GitHub Releases. -
Extract
rtfkit.exe. -
Move
rtfkit.exeinto a directory on yourPATH, or add its directory toPATH. -
Verify the installation:
rtfkit.exe --help
Download the archive and matching .sha256 file, then run:
sha256sum -c rtfkit-<target>.tar.gz.sha256Use PowerShell to compute the file hash and compare it with the published checksum:
Get-FileHash .\rtfkit-x86_64-pc-windows-msvc.zip -Algorithm SHA256If you need a local development build instead of a release artifact:
cargo install --path crates/rtfkit-cli