How To Install scheme-chez-srfi on Kali Linux

In this tutorial we learn how to install scheme-chez-srfi on Kali Linux. scheme-chez-srfi is SRFI libraries for Chez Scheme and others

Introduction

In this tutorial we learn how to install scheme-chez-srfi on Kali Linux.

What is scheme-chez-srfi

scheme-chez-srfi is:

SRFI stands for Scheme Requests For Implementation. It is a standardization process for extensions to the programming language Scheme. Since its start in 1998, the project has been working for portability between Scheme implementations.

This package provides SRFI implementations primarily developed for Chez Scheme. Most of the libraries are however fully portable to other R6RS implementations.

There are three methods to install scheme-chez-srfi on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install scheme-chez-srfi Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install scheme-chez-srfi using apt-get by running the following command:

sudo apt-get -y install scheme-chez-srfi

Install scheme-chez-srfi Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install scheme-chez-srfi using apt by running the following command:

sudo apt -y install scheme-chez-srfi

Install scheme-chez-srfi Using aptitude

If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install scheme-chez-srfi using aptitude by running the following command:

sudo aptitude -y install scheme-chez-srfi

How To Uninstall scheme-chez-srfi on Kali Linux

To uninstall only the scheme-chez-srfi package we can use the following command:

sudo apt-get remove scheme-chez-srfi

Uninstall scheme-chez-srfi And Its Dependencies

To uninstall scheme-chez-srfi and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove scheme-chez-srfi

Remove scheme-chez-srfi Configurations and Data

To remove scheme-chez-srfi configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge scheme-chez-srfi

Remove scheme-chez-srfi configuration, data, and all of its dependencies

We can use the following command to remove scheme-chez-srfi configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge scheme-chez-srfi

Dependencies

scheme-chez-srfi have the following dependencies:

References

Summary

In this tutorial we learn how to install scheme-chez-srfi package on Kali Linux using different package management tools: apt, apt-get and aptitude.