Skip to content

Downloads

OpenTubeX is available on Windows 10+, macOS 12+, and Linux.

Download links below point to the v0.30.1-beta release on GitHub.

You can also browse all GitHub releases or build OpenTubeX from source for any supported platform.

Install OpenTubeX with winget:

Terminal window
winget install OpenTubeX.OpenTubeX

Add the signed OpenTubeX APT repository and install the package:

Terminal window
sudo install -d -m 0755 /etc/apt/keyrings
wget -qO- https://apt.opentubex.org/opentubex-archive-keyring.gpg \
| sudo tee /etc/apt/keyrings/opentubex-archive-keyring.gpg >/dev/null
echo "deb [signed-by=/etc/apt/keyrings/opentubex-archive-keyring.gpg] https://apt.opentubex.org stable main" \
| sudo tee /etc/apt/sources.list.d/opentubex.list >/dev/null
sudo apt update
sudo apt install opentubex

Install from the official OpenTubeX COPR repository:

Terminal window
sudo dnf copr enable d3sox/opentubex
sudo dnf install opentubex

Alternatively, add the signed OpenTubeX-hosted RPM repository:

Terminal window
sudo curl --fail --location \
--output /etc/yum.repos.d/opentubex.repo \
https://rpm.opentubex.org/opentubex.repo
sudo dnf install opentubex

Add the signed OpenTubeX-hosted RPM repository and install OpenTubeX:

Terminal window
sudo rpm --import \
https://rpm.opentubex.org/opensuse/repodata/repomd.xml.key
sudo zypper addrepo --refresh \
https://rpm.opentubex.org/opensuse/ \
opentubex
sudo zypper install opentubex

Add the OpenTubeX Flatpak remote and install the package:

Terminal window
flatpak remote-add --if-not-exists opentubex \
https://flatpak.opentubex.org/opentubex.flatpakrepo
flatpak install opentubex org.opentubex.OpenTubeX

Install from the AUR with a helper such as paru or yay. Pick opentubex-bin for the prebuilt binary (faster to install) or opentubex to compile from source:

Prebuilt binary
paru -S opentubex-bin
Build from source
paru -S opentubex

Development builds provide early access to changes on the development branch in two different ways:

Automated buildsNightly package channels
After development changes are pushedEvery day at 02:15 UTC

The latest development artifacts are available from the Build workflow or through nightly.link without a GitHub account.

Arch Linux users can build the current development revision with opentubex-git:

Automated build
paru -S opentubex-git

Add the signing key and select the nightly APT suite:

Terminal window
sudo install -d -m 0755 /etc/apt/keyrings
wget -qO- https://apt.opentubex.org/opentubex-archive-keyring.gpg \
| sudo tee /etc/apt/keyrings/opentubex-archive-keyring.gpg >/dev/null
echo "deb [signed-by=/etc/apt/keyrings/opentubex-archive-keyring.gpg] https://apt.opentubex.org nightly main" \
| sudo tee /etc/apt/sources.list.d/opentubex.list >/dev/null
sudo apt update
sudo apt install opentubex