slib command not found

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

Introduction

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

slib: command not found

or when using sudo you get the following error message

sudo: slib: command not found

Solutions to slib: command not found

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

In Ubuntu slib is provided by slib package.

slib is:

SLIB is a portable scheme library meant to provide compatibility and utility functions for all standard scheme implementations. SLIB includes initialization files for Chez, ELK 2.1, GAMBIT, MacScheme, MITScheme, scheme->C, Scheme48, T3.1, and VSCM. SCM also supports SLIB.

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

sudo apt-get -y install slib

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

You can also use apt command to install slib.

sudo apt -y install slib

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

sudo aptitude install slib

Summary

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