smlyacc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
smlyacc: command not found
or when using sudo you get the following error message
sudo: smlyacc: command not found
Solutions to smlyacc: command not found
How To Fix smlyacc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu smlyacc is provided by smlsharp package.
smlsharp is:
SML# is a variant of Standard ML programming language with several practical extentions, including seamless interoperability with C, integration with SQL, and separate compilation.
To fix this problem, we can install more using the command below.
sudo apt-get -y install smlsharp
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install smlsharp.
sudo apt -y install smlsharp
Or if you have aptitude installed you can use the following command.
sudo aptitude install smlsharp
Summary
In this tutorial we learn how to fix smlyacc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.