Skip to content

Latest commit

 

History

History
73 lines (48 loc) · 1.58 KB

File metadata and controls

73 lines (48 loc) · 1.58 KB

Install rtfkit

The recommended way to install rtfkit is to download a prebuilt binary from GitHub Releases.

Release artifacts

Stable releases currently ship the following binary archives:

  • rtfkit-x86_64-unknown-linux-gnu.tar.gz
  • rtfkit-aarch64-unknown-linux-gnu.tar.gz
  • rtfkit-x86_64-apple-darwin.tar.gz
  • rtfkit-aarch64-apple-darwin.tar.gz
  • rtfkit-x86_64-pc-windows-msvc.zip

Each release also includes per-archive SHA256 checksum files.

macOS and Linux

  1. Download the archive for your platform from GitHub Releases.

  2. Extract the archive:

    tar xzf rtfkit-<target>.tar.gz
  3. Move the binary to a directory on your PATH, for example:

    install -m 755 rtfkit /usr/local/bin/rtfkit
  4. Verify the installation:

    rtfkit --help

Windows

  1. Download rtfkit-x86_64-pc-windows-msvc.zip from GitHub Releases.

  2. Extract rtfkit.exe.

  3. Move rtfkit.exe into a directory on your PATH, or add its directory to PATH.

  4. Verify the installation:

    rtfkit.exe --help

Verify checksums

macOS and Linux

Download the archive and matching .sha256 file, then run:

sha256sum -c rtfkit-<target>.tar.gz.sha256

Windows

Use PowerShell to compute the file hash and compare it with the published checksum:

Get-FileHash .\rtfkit-x86_64-pc-windows-msvc.zip -Algorithm SHA256

Build from source

If you need a local development build instead of a release artifact:

cargo install --path crates/rtfkit-cli