lynx command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
lynx: command not found
or when using sudo you get the following error message
sudo: lynx: command not found
Solutions to lynx: command not found
How To Fix lynx: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu lynx is provided by lynx package.
lynx is:
In continuous development since 1992, Lynx sets the standard for text-mode web clients. It is fast and simple to use, with support for browsing via FTP, Gopher, HTTP, HTTPS, NNTP, and the local file system.
To fix this problem, we can install more using the command below.
sudo apt-get -y install lynx
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install lynx.
sudo apt -y install lynx
Or if you have aptitude installed you can use the following command.
sudo aptitude install lynx
Summary
In this tutorial we learn how to fix lynx command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.