-
-
Notifications
You must be signed in to change notification settings - Fork 61
Installation
Alex Mayer edited this page Apr 19, 2025
·
18 revisions
Television is available on nixpkgs
nix run nixpkgs#television
brew install television
scoop bucket add extras
scoop install television
winget install --exact --id alexpasmantier.television
pacman -S television
apk add chimera-repo-user
apk add television
VER=`curl -s "https://api.github.com/repos/alexpasmantier/television/releases/latest" | grep '"tag_name":' | sed -E 's/.*"tag_name": "([^"]+)".*/\1/'`
curl -LO https://github.com/alexpasmantier/television/releases/download/$VER/tv-$VER-x86_64-unknown-linux-musl.deb
echo $VER
sudo dpkg -i tv-$VER-x86_64-unknown-linux-musl.deb
pixi global install television
From the latest release page:
- Download the latest release asset for your platform (e.g.
tv-vX.X.X-linux-x86_64.tar.gz
if you're on a linux x86 machine) - Unpack and copy to the relevant location on your system (e.g.
/usr/local/bin
on macos and linux for a global installation)
Setup the latest stable Rust toolchain via rustup:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
rustup update
Install television
:
cargo install --locked television
If you want to benefit from the latest updates on main, clone the repo and build from source by running:
git clone git@github.com:alexpasmantier/television.git && cd television
just build release
You can then alias tv
to the produced binary:
alias tv=$TELEVISION_DIR/target/release/tv