Installation

There are two main ways to install this program, which are as follows.

Binary

This is the simplest, though can cause issues on macOS, now that it is complaining of potential malware for programs like this.

To install by this method, download and run the appropriate file from below:

These packages will take care of everything for you.

Source

If the installers don't work for some reason, or you don't trust them, you can install straight from source.

To do so, you must have a version of the Rust toolchain that supports the 2024 edition of Rust.

No other libraries are known to be required, though the FreeBSD port files plays it safe and makes sure to include Libclang.

Once everything is situated, you can run either:

cargo build --release

Or, if your OS uses Gnu Make:

make

Cargo is the best to use, as it will work on any operating system that has access to the Rust toolchain.

After the program has finished building, you can move the binary into its appropriate place, as long as the destination directory is listed in your PATH environment variable, or use:

sudo make install

However, installing via Make is only guaranteed to work on macOS and Linux.

After that, everything should be good to go.