Skip to content

Installing on Linux

Ian Walton edited this page Jan 29, 2022 · 4 revisions

How to install on Linux (Works with Ubuntu and Debian)

Download the package. You can download the package from https://github.com/jellyfin/jellyfin-media-player/releases.

For instance, you can run:

version=$(curl --head https://github.com/jellyfin/jellyfin-media-player/releases/latest | tr -d '\r' | grep '^location' | sed 's/.*\/v//g')
wget "https://github.com/jellyfin/jellyfin-media-player/releases/download/v$version/jellyfin-media-player_$version-1_amd64-$(grep VERSION_CODENAME /etc/os-release | cut -d= -f2).deb" -O jmp.deb

Install the package. (Includes dependencies)

sudo apt install ./jmp.deb

Delete the installation package.

rm jmp.deb

Other Options

Clone this wiki locally