Annotator is a lightweight application for annotating images. It is much simpler and faster to edit an image in annotator than in GIMP.
It was recently featured in OMG! Ubuntu!. How to install it in Ubuntu?
1 Answer
There are several ways to install Annotator. Parts of this answer are from the project's README (and parts of the README were updated from this answer).
PPA
You can use the PPA maintained by Panda Jim (who also happens to maintain the GIMP PPA, among many others). Enter the following commands one by one
sudo add-apt-repository ppa:ubuntuhandbook1/annotator
sudo apt update
sudo apt install com.github.phase1geo.annotatorThe PPA supports Ubuntu 20.04+.
Flatpak
You can use flatpak to download it from the Elementary appcenter repositories.
flatpak install Manually install from source
First install the dependencies.
sudo apt install meson valac debhelper gobject-2.0 glib-2.0 libgee-0.8-dev libgranite-dev libxml2-dev libgtk-3-dev libhandy-1-dev(libhandy for Ubuntu 20.04 is available in this PPA. In later versions of Ubuntu, it is available in the official repositories.)
Then download the source and run the install script.
git clone --depth=1
cd Annotator
./app installFlatpak (manual install)
Download the source, and manually build and install with flatpak (the software is not yet available on flathub).
git clone --depth=1
cd Annotator
./app flatpakAnd you can open the app from menu (or run it with flatpak run com.github.phase1geo.annotator).