apvlv command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
apvlv: command not found
or when using sudo you get the following error message
sudo: apvlv: command not found
Solutions to apvlv: command not found
How To Fix apvlv: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu apvlv is provided by apvlv package.
apvlv is:
apvlv (Alf’s PDF Viewer Like Vim) is a small and fast PDF viewer, that uses poppler for rendering. Its interface aims to users who like vim behaviour. For example opening a PDF file can be done with ‘:o filename’. apvlv can also work with tabs, so you can open multiple files at the same time in one program.
To fix this problem, we can install more using the command below.
sudo apt-get -y install apvlv
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install apvlv.
sudo apt -y install apvlv
Or if you have aptitude installed you can use the following command.
sudo aptitude install apvlv
Summary
In this tutorial we learn how to fix apvlv command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.