8000 Installation Β· alexpasmantier/television Wiki Β· GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
Alex Mayer edited this page Apr 19, 2025 · 18 revisions
tv-version

πŸ“¦ Nix

Television is available on nixpkgs

nix run nixpkgs#television

πŸ“¦ Homebrew

brew install television

πŸ“¦ Scoop

scoop bucket add extras
scoop install television

πŸ“¦ WinGet

winget install --exact --id alexpasmantier.television

πŸ“¦ Arch Linux

pacman -S television

πŸ“¦ Chimera Linux

apk add chimera-repo-user
apk add television

πŸ“¦ Debian-based (Debian, Ubuntu, Pop!_OS, Linux Mint, etc.)

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

πŸ“¦ Conda-forge (cross-platform)

pixi global install television

πŸ“¦ Pre-compiled Binary

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)

πŸ“¦ Crates.io

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

πŸ“¦ Building from source

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
Clone this wiki locally
0