How To Install libfsharp-core4.3-cil on Debian 9
Introduction
In this tutorial we learn how to install libfsharp-core4.3-cil on Debian 9.
What is libfsharp-core4.3-cil
libfsharp-core4.3-cil is:
F# is a multi-paradigm programming language, supporting functional, imperative, and object-oriented structures.
This package contains the core runtime library for F# binaries.
There are three methods to install libfsharp-core4.3-cil on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install libfsharp-core4.3-cil Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install libfsharp-core4.3-cil using apt-get by running the following command:
sudo apt-get -y install libfsharp-core4.3-cil
Install libfsharp-core4.3-cil Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install libfsharp-core4.3-cil using apt by running the following command:
sudo apt -y install libfsharp-core4.3-cil
Install libfsharp-core4.3-cil 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 Debian. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install libfsharp-core4.3-cil using aptitude by running the following command:
sudo aptitude -y install libfsharp-core4.3-cil
How To Uninstall libfsharp-core4.3-cil on Debian 9
To uninstall only the libfsharp-core4.3-cil package we can use the following command:
sudo apt-get remove libfsharp-core4.3-cil
Uninstall libfsharp-core4.3-cil And Its Dependencies
To uninstall libfsharp-core4.3-cil and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove libfsharp-core4.3-cil
Remove libfsharp-core4.3-cil Configurations and Data
To remove libfsharp-core4.3-cil configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge libfsharp-core4.3-cil
Remove libfsharp-core4.3-cil configuration, data, and all of its dependencies
We can use the following command to remove libfsharp-core4.3-cil configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libfsharp-core4.3-cil
Dependencies
libfsharp-core4.3-cil have the following dependencies:
- cli-common
- libmono-corlib4.5-cil
- libmono-system-core4.0-cil
- libmono-system-numerics4.0-cil
- libmono-system4.0-cil
- mono-runtime-common
References
Summary
In this tutorial we learn how to install libfsharp-core4.3-cil package on Debian 9 using different package management tools: apt, apt-get and aptitude.