0

I installed recoll on my Kubuntu 20.04. Now it says that external apps and commands are missing that are required for the indexing are missing, specifically:

djvutxt (image/vnd.djvu)
python3:pylzma (application/x-7z-compressed)

but I have no idea how to install them. No such packages are shown in muon (my package manager GUI). How can I install them?

Make42
  • 635
  • 1
  • 8
  • 16

1 Answers1

3
sudo apt install djvulibre-bin
sudo apt install python3-pip
pip3 install pylzma

edit

Install backport.lzma:

sudo apt install liblzma-dev
pip3 install backports.lzma
GAD3R
  • 63,407
  • 31
  • 131
  • 192
  • 1
    Thanks, djvu worked, but recoll still says that `python3:pylzma (application/x-7z-compressed)` is missing. Other python related helpers, were installed by me via `apt-get install python3-...`, where `...` would be the name of the related helper. However, there is no package `python3-pylzma`. – Make42 Dec 16 '20 at 21:04
  • 1
    `liblzma-dev` is already installed and `pip3 install backport.lzma` returns "ERROR: Could not find a version that satisfies the requirement backport.lzma (from versions: none) ERROR: No matching distribution found for backport.lzma" – Make42 Dec 16 '20 at 22:50