pyzor command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pyzor: command not found
or when using sudo you get the following error message
sudo: pyzor: command not found
Solutions to pyzor: command not found
How To Fix pyzor: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pyzor is provided by pyzor package.
pyzor is:
Pyzor is a collaborative, networked system to detect and block spam using identifying digests of messages.
Package contains both client and server.
The client can check if an email is a known spam against a pyzor server or report new spam digests to that server.
The server holds the digests database, and handle the client requests.
Pyzor is a reimplementation of Razor in Python.
To fix this problem, we can install more using the command below.
sudo apt-get -y install pyzor
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pyzor.
sudo apt -y install pyzor
Or if you have aptitude installed you can use the following command.
sudo aptitude install pyzor
Summary
In this tutorial we learn how to fix pyzor command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.