averell command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
averell: command not found
or when using sudo you get the following error message
sudo: averell: command not found
Solutions to averell: command not found
How To Fix averell: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu averell is provided by averell package.
averell is:
averell is an incredibly simple, but fast, web server based on the erlang/OTP application cowboy.
It is as simple to use as starting in a directory to serve it on port 8000 (default). Basic options include: enabling CORS, changing port, redirecting directories to index.html, etc.
To fix this problem, we can install more using the command below.
sudo apt-get -y install averell
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install averell.
sudo apt -y install averell
Or if you have aptitude installed you can use the following command.
sudo aptitude install averell
Summary
In this tutorial we learn how to fix averell command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.