slsh command not found

In this troubleshooting guide we learn how to fix slsh command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

slsh: command not found

or when using sudo you get the following error message

sudo: slsh: command not found

Solutions to slsh: command not found

How To Fix slsh: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu slsh is provided by slsh package.

slsh is:

S-Lang is a C programmer’s library that includes routines for the rapid development of sophisticated, user friendly, multi-platform applications.

This package contains a stand-alone interpreter for scripts written in the S-Lang language.

To fix this problem, we can install more using the command below.

sudo apt-get -y install slsh

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install slsh.

sudo apt -y install slsh

Or if you have aptitude installed you can use the following command.

sudo aptitude install slsh

Summary

In this tutorial we learn how to fix slsh command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.