simplyhtml command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
simplyhtml: command not found
or when using sudo you get the following error message
sudo: simplyhtml: command not found
Solutions to simplyhtml: command not found
How To Fix simplyhtml: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu simplyhtml is provided by simplyhtml package.
simplyhtml is:
SimplyHTML is an application built for working with text documents. Text documents are stored in HTML and CSS format, but the application is meant as a word processor rather than a code editor or web site builder.
SimplyHTML can be used standalone as well like a library/plugin.
To fix this problem, we can install more using the command below.
sudo apt-get -y install simplyhtml
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install simplyhtml.
sudo apt -y install simplyhtml
Or if you have aptitude installed you can use the following command.
sudo aptitude install simplyhtml
Summary
In this tutorial we learn how to fix simplyhtml command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.