How To Install chibi-scheme-images on Ubuntu
Posted on April 1, 2023  (Last modified on May 20, 2023 )
2 minutes • 367 words
Introduction
In this tutorial we learn how to install chibi-scheme-images
on Ubuntu.
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. 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
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, 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 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
Dependencies
chibi-scheme-images have the following dependencies:
References
Summary
In this tutorial we learn how to install chibi-scheme-images
package on Ubuntu using different package management tools: apt, apt-get and aptitude.