Introduction
In this tutorial we learn how to install angelscript-doc
on Ubuntu 22.04.
What is angelscript-doc
angelscript-doc is:
AngelScript features static typing, object handles (similar to C++ pointers but
garbage collected via reference counting), object- orientation, single
inheritance, multiple inheritance with interfaces. Allows operators to be
registered and overloaded. AngelScript can be used with any C++ IDE, such as
Netbeans, Geany, and Eclipse.
This package contains the documentation for angelscript.
There are three methods to install angelscript-doc
on Ubuntu 22.04. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install angelscript-doc Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install angelscript-doc
using apt-get
by running the following command:
sudo apt-get -y install angelscript-doc
Install angelscript-doc Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install angelscript-doc
using apt
by running the following command:
sudo apt -y install angelscript-doc
Install angelscript-doc 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 angelscript-doc
using aptitude
by running the following command:
sudo aptitude -y install angelscript-doc
How To Uninstall angelscript-doc on Ubuntu 22.04
To uninstall only the angelscript-doc
package we can use the following command:
sudo apt-get remove angelscript-doc
Uninstall angelscript-doc And Its Dependencies
To uninstall angelscript-doc
and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:
sudo apt-get -y autoremove angelscript-doc
Remove angelscript-doc Configurations and Data
To remove angelscript-doc
configuration and data from Ubuntu 22.04 we can use the following command:
sudo apt-get -y purge angelscript-doc
Remove angelscript-doc configuration, data, and all of its dependencies
We can use the following command to remove angelscript-doc
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge angelscript-doc
References
Summary
In this tutorial we learn how to install angelscript-doc
package on Ubuntu 22.04 using different package management tools: apt
, apt-get
and aptitude
.