Skip to main content

Installation

Installation Methods

Install Odyn with the standalone installers or any method of your choice

Standalone Installer

Odyn provides a standalone installer to download and install Odyn:

Use curl to download the script and execute it with sh:

curl -fsSL https://codeberg.org/razkar/odyn/raw/branch/main/install.sh | sh

If your system doesn't have curl, you can use wget:

wget -qO- https://codeberg.org/razkar/odyn/raw/branch/main/install.sh | sh
tip

The installation script may be inspected before use:

curl -fsSL https://codeberg.org/razkar/odyn/raw/branch/main/install.sh | less

Codeberg Releases

Odyn's release artifacts can be found on Codeberg Releases.

Each release contains binaries of each supported platform that can be directly downloaded.

Cargo

Odyn is available via crates.io.

cargo install odyn
note

This method builds Odyn from source, which requires a compatible Rust toolchain.

Upgrading Odyn

When Odyn is installed from any of these methods except Cargo, it can update itself on-demand:

odyn update-self

This will fetch the latest release binary from the Codeberg Releases page.

Uninstallation

If you need to remove Odyn from your system, you only need to remove the Odyn binary:

rm ~/.local/bin/odyn
note

The path assumes you installed using the script and did not move the binary. Please modify it if you need to.