Installation with Python 3 using PIP

You can install the WatchPage Python package from PIP repository using:

python3 -m pip install watchpage

You can install the downloaded Wheel package (.whl) using:

cd "~/folder with the downloaded file"
python3 -m pip install watchpage-versione-*.whl

If you prefer to use the source code package you can extract and install it using:

cd "~/folder with the downloaded file"
tar xzf "watchpage-version.pkg.tar.gz"
python3 -m pip install -e "watchpage-version"

To uninstall the package later you can use:

python3 -m pip uninstall watchpage

Installation on Arch Linux and derivatives

In the AUR you can find the latest available version, it can be downloaded and built using yay (or a similar AUR helper) using yay -S watchpage and then following the AUR helper instructions.

It's possible to download the tar.zst package from the Download page and install it using:

cd "~/folder with the downloaded file"
sudo pacman -U "watchpage-version.tar.zst"