apparix command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
apparix: command not found
or when using sudo you get the following error message
sudo: apparix: command not found
Solutions to apparix: command not found
How To Fix apparix: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu apparix is provided by apparix package.
apparix is:
Fast file system navigation by bookmarking directories and jumping to a bookmark directly. Apparix integrates regular bookmarks with CDPATH-style bookmarks. Subdirectory specification and (bash) tab completion add further power.
Apparix maintains a mapping of user-defined marks (hopefully short and descriptive) to file system locations and is wrapped in other commands to either jump to those locations or to invoke edit/copy/move commands involving them.
To fix this problem, we can install more using the command below.
sudo apt-get -y install apparix
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install apparix.
sudo apt -y install apparix
Or if you have aptitude installed you can use the following command.
sudo aptitude install apparix
Summary
In this tutorial we learn how to fix apparix command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.