Quickstart

Add my Debian repository:

sudo curl -o /etc/apt/trusted.gpg.d/org_codeberg_odkr.asc \
    https://codeberg.org/api/packages/odkr/debian/repository.key
sudo tee /etc/apt/sources.list.d/org_codeberg_odkr.list <<EOF
deb https://codeberg.org/api/packages/odkr/debian bullseye main
EOF
sudo apt-get update

Install Para:

sudo apt-get install para

Tip

These instructions also work for Debian-based distributions (e.g., Linux Mint, MX Linux, Pop!_OS, Ubuntu, or Zorin).

Download, unpack, verify, and build Para:

version="0.12"
baseurl="https://codeberg.org/odkr/para/releases/download/v$version"
tarball="para-$version.tgz"
curl --no-clobber -O "$baseurl/$tarball" -O "$baseurl/$tarball.asc"
gpg --keyserver keys.openpgp.org --recv-keys 6B06A2E03BE31BE9
gpg --verify "$tarball.asc"
tar xzf "$tarball"
cd "${tarball%.tgz}"
./installc
./configure
make

Then install Para either system-wide:

sudo make install

Or to your home directory:

make prefix=~/.local install

See Build and Installation for details and troubleshooting.

Tip

Subscribe to https://codeberg.org/odkr/para/releases.rss to be notified about new releases.