How To Install c++-annotations on Debian 10
Introduction
In this tutorial we learn how to install c++-annotations
on Debian 10.
What is c++-annotations
c++-annotations is:
The C++ Annotations offer an extensive tutorial about the C++ programming language. It can be used as a textbook for C/C++ programming courses.
This document is intended for knowledgeable users of C (or any other language using a C-like grammar, like Perl or Java) who would like to know more about, or make the transition to, C++. This document is the main textbook for Frank’s C++ programming courses, which are yearly organized at the University of Groningen, the Netherlands.
The C++ Annotations do not cover all aspects of C++, though. In particular, C++’s basic grammar, which is, for all practical purposes, equal to C’s grammar, is not covered. For this part of the C++ language, the reader should consult other texts, like a book covering the C programming language.
This package installs C++ Annotations packages for all available formats, including: - plain ascii text - LaTeX (including a .dvi file) - PostScript - pdf - html The postscript, pdf and LaTeX formats were constructed for two different paper-sizes: A4 and legal.
If you do not require all of the available formats, you may prefer to install one or more of the following c++-annotations-{format} packages instead: - c++-annotations-html - c++-annotations-txt - c++-annotations-latex - c++-annotations-pdf - c++-annotations-ps - c++-annotations-dvi
There are three methods to install c++-annotations
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install c++-annotations Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install c++-annotations
using apt-get
by running the following command:
sudo apt-get -y install c++-annotations
Install c++-annotations Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install c++-annotations
using apt
by running the following command:
sudo apt -y install c++-annotations
Install c++-annotations 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 c++-annotations
using aptitude
by running the following command:
sudo aptitude -y install c++-annotations
How To Uninstall c++-annotations on Debian 10
To uninstall only the c++-annotations
package we can use the following command:
sudo apt-get remove c++-annotations
Uninstall c++-annotations And Its Dependencies
To uninstall c++-annotations
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove c++-annotations
Remove c++-annotations Configurations and Data
To remove c++-annotations
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge c++-annotations
Remove c++-annotations configuration, data, and all of its dependencies
We can use the following command to remove c++-annotations
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge c++-annotations
Dependencies
c++-annotations have the following dependencies:
- c++-annotations-html
- c++-annotations-txt
- c++-annotations-latex
- c++-annotations-pdf
- c++-annotations-ps
- c++-annotations-dvi
- c++-annotations-contrib
References
Summary
In this tutorial we learn how to install c++-annotations
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.