# Software Downloads

Download stable Oden releases, nightly builds, package checksums, and changelog information.

Last validated: 2026-05-25

The Oden download site is [releases.voysys.dev](https://releases.voysys.dev). Use it to download stable releases, nightly builds, and package checksums.

For step-by-step installation instructions, see [Install Oden](../start/install-oden.md).

## Release Channels

| Channel | Use | Where |
| --- | --- | --- |
| Stable | A numbered release. Stable releases are listed by version and include product installers, `.sha256` checksum files, and release notes. Use the same stable version on every Oden machine in a deployment. | [Latest Release and Older Versions](https://releases.voysys.dev). |
| Nightly | A date-based build such as `2026-05-04`. Nightlies may contain unstable features and should only be used for testing. | [Nightly Builds](https://releases.voysys.dev/nightly/) |

## Products

Each stable or nightly version page groups downloads by product:

-   Oden Fleet Streamer
    
-   Oden Streamer
    
-   OdenVR
    
-   Oden Dome Player
    

If a product is not available for a platform, use another platform package or choose a version that includes the package you need.

## Platform Packages

| Platform | Package type |
| --- | --- |
| Windows x64 | MSI installer |
| Ubuntu x64 | Debian package compatible with Ubuntu 20.04 and up. |
| NVIDIA Jetson arm64 | Debian package tied to JetPack major version. |

For Jetson, choose the package that matches the device’s JetPack version. Current release pages map JetPack package labels such as `4.6`, `5.1`, `6.1`, and `7.1` to the corresponding arm64 package filenames when those builds are available.

## Checksums

Every generated package link has a matching `SHA` link that points to `<package>.sha256`. Download the checksum file with the package when you need to verify the download before installing.

```shell
sha256sum -c oden-vr_<version>_amd64.deb.sha256
```

The Linux install script also downloads the matching `.sha256` file and verifies it with `sha256sum -c` before installing.

## Linux Install Script

For Ubuntu and Jetson systems, the releases site publishes [`install.sh`](https://releases.voysys.dev/install.sh). The script installs the latest stable release if nothing else is specified.

```shell
curl -fsSL https://releases.voysys.dev/install.sh | sh
```

```shell
curl -fsSL https://releases.voysys.dev/install.sh | sh -s -- fleet-streamer
curl -fsSL https://releases.voysys.dev/install.sh | sh -s -- streamer
curl -fsSL https://releases.voysys.dev/install.sh | sh -s -- vr
```

```shell
curl -fsSL https://releases.voysys.dev/install.sh | sh -s -- --release 2.48.1
```

## Nightly Builds

Use a nightly only when you need to test a fix or new feature before the next stable release.

> **WARNING**
> Nightly builds may contain unstable features and changes that have not been validated as a stable release. Use a stable release for normal installations unless Voysys has directed you to use a nightly.

Download nightlies from [releases.voysys.dev/nightly/](https://releases.voysys.dev/nightly/).

Nightly pages use a date-based public build identifier. For example, a nightly shown as `2026-05-04` on the download site uses `20260504` in package filenames and URLs.

Do not mix stable releases, older stable releases, and nightlies in the same deployment unless Voysys has told you to do so.

## Changelog

Stable version pages include a What’s New section. The full changelog is available at [releases.voysys.dev/changelog](https://releases.voysys.dev/changelog/).

Stable Oden releases use numeric versions such as `2.48.1`. We go to great lengths to always be backwards compatible but using the same stable version is the best way to avoid compatibility issues.
