# Install Oden

Install Oden Streamer, Oden Fleet Streamer, OdenVR, or Oden Dome Player.

Last validated: 2026-05-26

Installers are available at [releases.voysys.dev](https://releases.voysys.dev). For more information, see [Software Downloads](../releases/downloads.md).

For Streamer, prefer to use the install command that Voysys Portal generates for you as that will automatically activate your license as well.

Choose the product you need, then choose the installer for your system. Download the matching `.sha256` file if you want to verify the installer before installing.

## Requirements and support

Minimum practical hardware for both Streamer and Player machines:

-   Modern CPU with at least 4 cores.
    
-   8 GB RAM or more.
    
-   Modern GPU (NVIDIA is recommended)
    

Use the latest GPU drivers.

GPU vendor support:

| Platform | NVIDIA | AMD | Intel graphics |
| --- | --- | --- | --- |
| Windows 10/11 x64 | Supported | Supported | Supported |
| Ubuntu 20.04 - 26.04 x64 | Supported | Supported | Supported |
| NVIDIA Jetson | Supported | Not applicable | Not applicable |

NVIDIA Jetson devices such as AGX Xavier, Xavier NX, Orin, and Thor are supported for embedded vehicle setups when the installed JetPack version matches the downloaded package.

Product support by platform:

| Platform | Oden Streamer | Oden Fleet Streamer | OdenVR | Oden Dome Player |
| --- | --- | --- | --- | --- |
| Windows 10/11 x64 | Supported | Supported | Supported | Supported |
| Ubuntu 20.04, 22.04, or 24.04 x64 | Supported | Supported | Supported | Supported |
| Jetson JetPack 4.6 arm64 | Supported | Supported | Not built for this JetPack | Not built for Jetson |
| Jetson JetPack 5.1, 6.1, or 7.1 arm64 | Supported | Supported | Supported | Not built for Jetson |

## Windows

Oden Windows installers are `.msi` packages for Windows 10/11 x64.

Install GPU drivers

Go to [NVIDIA Driver Downloads](https://www.nvidia.com/Download/index.aspx) and install the latest driver for your GPU.

Install Oden

1.  Open [releases.voysys.dev](https://releases.voysys.dev).
    
2.  Go to the version you want to install.
    
3.  Download the Windows installer for your product.
    
4.  Run the `.msi` installer and follow the instructions.
    

You can also install from PowerShell:

```powershell
msiexec /i .\OdenVR_latest.msi
```

Replace `OdenVR_latest.msi` with the installer you downloaded.

## Ubuntu

Oden Ubuntu installers are `.deb` packages for x64 Ubuntu. Current x64 release packages use the universal `_amd64.deb` filename and are built to run on Ubuntu 20.04 and newer.

### Install the latest release

Run the installer script and choose a product when prompted:

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

Or pass the product role directly:

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

### Install a downloaded package

Open a terminal in the download directory and install the `.deb` package with `apt-get`. The leading `./` is required.

```shell
sha256sum -c oden-vr_latest_amd64.deb.sha256
sudo apt-get install ./oden-vr_latest_amd64.deb
```

Replace `oden-vr_latest_amd64.deb` with the package you downloaded.

### GPU drivers

For NVIDIA GPUs on Ubuntu, install the latest `nvidia-driver-$VERSION` package, e.g. `sudo apt install nvidia-driver-595`.

### Noninteractive Fleet Streamer service install

The `.deb` installer prompts for the EULA. Oden Fleet Streamer also asks whether to install, enable, and start the `oden-streamer.service` systemd service. The service is not installed by default.

Pre-seed debconf when you want a fully noninteractive Fleet Streamer install that enables the service:

```shell
echo "oden-streamer oden-streamer/accept-eula boolean true" | sudo debconf-set-selections
echo "oden-streamer oden-streamer/install-services boolean true" | sudo debconf-set-selections
sudo DEBIAN_FRONTEND=noninteractive apt-get install ./oden-fleet-streamer_*.deb
```

For a noninteractive Fleet Streamer package install without installing the boot service, pre-seed `install-services` as `false`:

```shell
echo "oden-streamer oden-streamer/accept-eula boolean true" | sudo debconf-set-selections
echo "oden-streamer oden-streamer/install-services boolean false" | sudo debconf-set-selections
sudo DEBIAN_FRONTEND=noninteractive apt-get install ./oden-fleet-streamer_*.deb
```

Use the service-enabled variant only when the vehicle computer should start Streamer automatically on boot.

Manage the service with `systemctl`:

```shell
sudo systemctl status oden-streamer.service
sudo systemctl restart oden-streamer.service
sudo systemctl enable oden-streamer.service
sudo systemctl disable oden-streamer.service
```

## NVIDIA Jetson

Jetson installers are arm64 `.deb` packages. The package filename includes the Ubuntu version and JetPack version, and it must match the JetPack version on the target device.

Check the Jetson L4T release:

```shell
cat /etc/nv_tegra_release
```

Install the downloaded package from a terminal:

```shell
sha256sum -c oden-streamer_latest_arm64_20.04_jetpack_5.1.deb.sha256
sudo apt-get install ./oden-streamer_latest_arm64_20.04_jetpack_5.1.deb
```

Replace the filename with the product and JetPack package you downloaded. Do not install a package built for a different JetPack version.

For Fleet Streamer service installation and service management, use the same debconf and `systemctl` commands as on Ubuntu.
