How To Install texlive-l3kernel on CentOS 7
Introduction
In this tutorial we learn how to install texlive-l3kernel
on CentOS 7.
What is texlive-l3kernel
The l3kernel bundle provides an implementation of the LaTeX3 programmers’ interface, as a set of packages that run under LaTeX 2e. The interface provides the foundation on which the LaTeX3 kernel and other future code are built TeX programmers. The packages are set up so that the LaTeX3 conventions can be used with regular LaTeX 2e packages. All the files of the bundle are also available in the Subversion (SVN) repository of the LaTeX3 Project. The bundle on CTAN is based on a snapshot of the SVN repository on 2012-11-21. date
We can use yum
or dnf
to install texlive-l3kernel
on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install texlive-l3kernel.
Install texlive-l3kernel on CentOS 7 Using yum
Update yum database with yum
using the following command.
sudo yum makecache
After updating yum database, We can install texlive-l3kernel
using yum
by running the following command:
sudo yum -y install texlive-l3kernel
Install texlive-l3kernel on CentOS 7 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf
using the following command.
sudo dnf makecache
After updating yum database, We can install texlive-l3kernel
using dnf
by running the following command:
sudo dnf -y install texlive-l3kernel
How To Uninstall texlive-l3kernel on CentOS 7
To uninstall only the texlive-l3kernel
package we can use the following command:
sudo dnf remove texlive-l3kernel
References
Summary
In this tutorial we learn how to install texlive-l3kernel
on CentOS 7 using yum
and dnf
.