Skip to content

Installation

  1. To install Cranberry, go to the GitHub Releases page and and get the latest release.

  2. Download the Cranberry.7z file, extract it and put it somewhere safe. (Like in Documents/Cranberry.)

Releases

  1. Open the start menu and search for “Edit the system environment variables”.

Environment Variables

  1. Go to Advanced > Environment Variables

Advanced

  1. Select Path and hit Edit. Then add the path to the Cranberry installation folder.

Edit Path

  1. When you’re done click Apply and OK.

Precompiled Linux binaries are available since version 0.8.0-alpha, with the file named cranberry-[version]-linux-x64.tar.zst (Zstandard-compressed Tar)

You can simply download the precompiled binary from GitHub Releases and extract it using your preferred program or use the command tar xf cranberry-[version]-linux-x64.tar.zst.

After extracting, a folder named cranberry-[version] will appear. Feel free to move that folder around and place it wherever you like.

Next, Follow one of these instructions to add cranberry to the PATH of your shell. For Linux beginners, If you haven’t changed your default shell, You are very likely using Bash.

Replace the /path/to/cranberry with the actual path in the following line and add it to your ~/.bash_profile

Terminal window
export PATH="/path/to/cranberry:$PATH"

For example, If you placed Cranberry at /home/user/cranberry, You would add the following:

Terminal window
export PATH="$HOME/cranberry:$PATH"

Next, Restart your terminal to apply the new configuration. (there are faster ways to reload configuration but this should work universally)

Then, You can move on to the next step and install Cranberry’s dependencies.