xapers command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
xapers: command not found
or when using sudo you get the following error message
sudo: xapers: command not found
Solutions to xapers: command not found
How To Fix xapers: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu xapers is provided by xapers package.
xapers is:
Xapers is a personal document indexing system, geared towards academic journal articles. Think of it as your own personal document search engine, or a local cache of online libraries. It provides fast search of document text and bibliographic data and simple document and bibtex retrieval.
Document files (in PDF format) and source identifiers (e.g. DOI) are parsed and indexed into a Xapian search engine. Document text is extracted from the PDF and fully indexed. Bibliographic information downloaded from online libraries is indexed as prefixed search terms. Existing bibtex databases can be easily imported as well, including import of pdf files specified in Jabref/Mendeley format. Documents can be arbitrarily tagged. Original document files are easily retrievable from a simple curses search UI. The command line interface allows for exporting bibtex from arbitrary searches, allowing seemless integration into LaTeX work flows.
To fix this problem, we can install more using the command below.
sudo apt-get -y install xapers
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xapers.
sudo apt -y install xapers
Or if you have aptitude installed you can use the following command.
sudo aptitude install xapers
Summary
In this tutorial we learn how to fix xapers command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.