urlview command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
urlview: command not found
or when using sudo you get the following error message
sudo: urlview: command not found
Solutions to urlview: command not found
How To Fix urlview: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu urlview is provided by urlview package.
urlview is:
This utility is used to extract URL from text files, especially from mail messages in order to launch some browser to view them. This used to be a part of mutt but has now become an independent tool.
To fix this problem, we can install more using the command below.
sudo apt-get -y install urlview
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install urlview.
sudo apt -y install urlview
Or if you have aptitude installed you can use the following command.
sudo aptitude install urlview
Summary
In this tutorial we learn how to fix urlview command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.