How To Install libklatexformula3 on Debian 9
Introduction
In this tutorial we learn how to install libklatexformula3
on Debian 9.
What is libklatexformula3
libklatexformula3 is:
With Klatexformula, just enter a formula and click “Evaluate” to get an image of a LaTeX formula. You can drag&drop, copy or save the resulting image directly from the GUI, which makes klatexformula a very convenient tool for presentations. Klatexformula also provides also tools for equation prototyping in LaTeX and a user-library of used equations. This package provides the libraries klatexformula is based on.
There are three methods to install libklatexformula3
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 libklatexformula3 Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libklatexformula3
using apt-get
by running the following command:
sudo apt-get -y install libklatexformula3
Install libklatexformula3 Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libklatexformula3
using apt
by running the following command:
sudo apt -y install libklatexformula3
Install libklatexformula3 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 libklatexformula3
using aptitude
by running the following command:
sudo aptitude -y install libklatexformula3
How To Uninstall libklatexformula3 on Debian 9
To uninstall only the libklatexformula3
package we can use the following command:
sudo apt-get remove libklatexformula3
Uninstall libklatexformula3 And Its Dependencies
To uninstall libklatexformula3
and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove libklatexformula3
Remove libklatexformula3 Configurations and Data
To remove libklatexformula3
configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge libklatexformula3
Remove libklatexformula3 configuration, data, and all of its dependencies
We can use the following command to remove libklatexformula3
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libklatexformula3
Dependencies
libklatexformula3 have the following dependencies:
References
Summary
In this tutorial we learn how to install libklatexformula3
package on Debian 9 using different package management tools: apt
, apt-get
and aptitude
.