Skip to content

Installation

Raphaël edited this page Apr 2, 2025 · 38 revisions

Linux

Archlinux

Install with AUR

Link: https://aur.archlinux.org/packages/tess-git

You can use an AUR package manager as yay or pamac for example.

Example with yay:

yay -S tess-git

Install with archive

Link: https://github.com/Squitch1/Tess/releases/download/0.6.2/tess-git-x86_64.pkg.tar.zst

Install wget to download:

pacman -S wget

Download and install the package:

wget https://github.com/Squitch1/Tess/releases/download/0.6.2/tess-git-x86_64.pkg.tar.zst && pacman -U ./tess-git-x86_64.pkg.tar.zst

Debian-Ubuntu

Install with Tess Debian repository

Install requirements:

apt install curl apt-transport-https gnupg2

Import GPG key:

curl -s https://apt.tessapp.dev/key.gpg | gpg --dearmor | tee /usr/share/keyrings/tess.gpg > /dev/null

Add the repository in /etc/apt/sources.list.d/:

echo 'deb [signed-by=/usr/share/keyrings/tess.gpg] https://apt.tessapp.dev stable main' >> /etc/apt/sources.list.d/tess-packages.list

Update repositories and install package:

apt update && apt install tess

Install with deb package

Link: https://github.com/Squitch1/Tess/releases/download/0.6.2/tess_0.6.2-1_all.deb

Install wget to download:

apt install wget

Download the file:

wget https://github.com/Squitch1/Tess/releases/download/0.6.2/tess_0.6.2-1_all.deb

Install package:

apt install -f ./tess_0.6.2-1_all.deb

RedHat-Fedora

Install with Tess RPM repository

Install requirement:

yum install curl 

Add the repository in /etc/yum.repos.d/:

curl https://rpm.tessapp.dev/tess.repo > /etc/yum.repos.d/tess.repo

Update repositories and install package:

yum check-update && yum install tess

Install with RPM package

Link: https://github.com/Squitch1/Tess/releases/download/0.6.2/tess-0.6.2-x86_64.rpm

Install wget to download:

yum install wget

Download the file:

wget https://github.com/Squitch1/Tess/releases/download/0.6.2/tess-0.6.2-x86_64.rpm

Install package:

rpm -Uvh ./tess-0.6.2-x86_64.rpm

Snapcraft

Link: https://snapcraft.io/tess

Install Snap if you don't have it with this tutorial.

Install package:

snap install tess --classic

Windows

Chocolatey

Start by installing Chocolatey, the installation information is available here.

If you want to have informations about the package it's available here.

When all this is done you can now install the package:

choco install tess

Winget

Start by installing Winget, the installation information is available here.

When this is done you can now install the package:

winget install Squitch.Tess

Manually

Download and execute the setup.
Link: https://github.com/Squitch1/Tess/releases/download/0.6.2/tess-setup.exe

Clone this wiki locally