How To Install chibi-scheme-images on Ubuntu 22.04

In this tutorial we learn how to install chibi-scheme-images on Ubuntu 22.04. chibi-scheme-images is embeddable Scheme interpreter (standard library images)

Introduction

In this tutorial we learn how to install chibi-scheme-images on Ubuntu 22.04.

What is chibi-scheme-images

chibi-scheme-images is:

Chibi-Scheme is a really small embeddable interpreter of R7RS Scheme, intended for use as an extension and scripting language in C programs.

A dummy package providing preloaded images for use with “chibi-scheme -i”. They allow faster startup times when using common library sets.

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

Install chibi-scheme-images Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install chibi-scheme-images

Install chibi-scheme-images Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install chibi-scheme-images

Install chibi-scheme-images Using aptitude

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

sudo aptitude update

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

sudo aptitude -y install chibi-scheme-images

How To Uninstall chibi-scheme-images on Ubuntu 22.04

To uninstall only the chibi-scheme-images package we can use the following command:

sudo apt-get remove chibi-scheme-images

Uninstall chibi-scheme-images And Its Dependencies

To uninstall chibi-scheme-images and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:

sudo apt-get -y autoremove chibi-scheme-images

Remove chibi-scheme-images Configurations and Data

To remove chibi-scheme-images configuration and data from Ubuntu 22.04 we can use the following command:

sudo apt-get -y purge chibi-scheme-images

Remove chibi-scheme-images configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge chibi-scheme-images

References

Summary

In this tutorial we learn how to install chibi-scheme-images package on Ubuntu 22.04 using different package management tools: apt, apt-get and aptitude.