smpl command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
smpl: command not found
or when using sudo you get the following error message
sudo: smpl: command not found
Solutions to smpl: command not found
How To Fix smpl: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu smpl is provided by simple package.
simple is:
Simple is a “framework-less” web framework for Haskell web applications based on the WAI server interface (f.ex. for use with the warp server). Simple does not enforce a particular structure or paradigm for web applications. Rather, Simple contains tools to help you create your own patterns (or re-create existing ones). Simple is minimalist, providing a lightweight base - the most basic Simple app is little more than a WAI ‘Application’ with some routing logic. Everything else (f.ex. authentication, controllers, persistence, caching, etc.) is provided in composable units, so you can include only the ones you need in your app, and easily replace them with your own components.
To fix this problem, we can install more using the command below.
sudo apt-get -y install simple
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install simple.
sudo apt -y install simple
Or if you have aptitude installed you can use the following command.
sudo aptitude install simple
Summary
In this tutorial we learn how to fix smpl command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.