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:
- macOS/Linux/Android/FreeBSD/NetBSD
- Windows PowerShell
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
The installation script may be inspected before use:
curl -fsSL https://codeberg.org/razkar/odyn/raw/branch/main/install.sh | less
Use irm to download the script and execute it with iex:
irm https://codeberg.org/razkar/odyn/raw/branch/main/install.ps1 | iex
On Windows, you may need to allow script execution first:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
The installation script may be inspected before use:
irm https://codeberg.org/razkar/odyn/raw/branch/main/install.ps1 | more
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
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:
- macOS/Linux/Android/FreeBSD/NetBSD
- Windows
rm ~/.local/bin/odyn
rm $HOME\.local\bin\odyn.exe
The path assumes you installed using the script and did not move the binary. Please modify it if you need to.