fades command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
fades: command not found
or when using sudo you get the following error message
sudo: fades: command not found
Solutions to fades: command not found
How To Fix fades: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu fades is provided by fades package.
fades is:
fades is a system that automatically handles the virtualenvs in the cases normally found when writing scripts and simple programs, and even helps to administer big projects.
To fix this problem, we can install more using the command below.
sudo apt-get -y install fades
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install fades.
sudo apt -y install fades
Or if you have aptitude installed you can use the following command.
sudo aptitude install fades
Summary
In this tutorial we learn how to fix fades command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.