How To Install aephea on Ubuntu
Posted on April 1, 2023  (Last modified on May 20, 2023 )
3 minutes • 480 words
Introduction
In this tutorial we learn how to install aephea
on Ubuntu.
What is aephea
aephea is:
Aephea is an HTML authoring framework. It enforces HTML well-formedness with a simpler and stricter syntax, provides useful extensions and abstractions as well as facilities for adding new ones, all in a single unified approach that stays close to HTML itself. Some of Aephea’s characteristics are a TeX-like syntax, dictionary stacks, iteration and a focus on styling via CSS.
PUD (Portable Unix Documentation) is shipped with Aephea. It provides mini-languages for authoring Unix manual pages and FAQ documents with output both in HTML and troff.
Both Aephea and PUD are written in zoem, a high-level macro/programming language with character filtering capabilities.
If you’d like to generate manpages, but don’t like troff syntax, and find Perl’s POD too limited, Aephea’s PUD is likely useful for you. If you like your documents to be available in both PDF and HTML, but find DocBook XML too heavyweight (and aren’t really happy with Docbook XML’s baroque default tagnames), you’ll like PUD.
There are three methods to install aephea
on Ubuntu. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install aephea Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install aephea
using apt-get
by running the following command:
sudo apt-get -y install aephea
Install aephea Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install aephea
using apt
by running the following command:
sudo apt -y install aephea
Install aephea 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 aephea
using aptitude
by running the following command:
sudo aptitude -y install aephea
How To Uninstall aephea on Ubuntu
To uninstall only the aephea
package we can use the following command:
sudo apt-get remove aephea
Uninstall aephea And Its Dependencies
To uninstall aephea
and its dependencies that are no longer needed by Ubuntu, we can use the command below:
sudo apt-get -y autoremove aephea
Remove aephea Configurations and Data
To remove aephea
configuration and data from Ubuntu we can use the following command:
sudo apt-get -y purge aephea
Remove aephea configuration, data, and all of its dependencies
We can use the following command to remove aephea
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge aephea
Dependencies
aephea have the following dependencies:
References
Summary
In this tutorial we learn how to install aephea
package on Ubuntu using different package management tools: apt, apt-get and aptitude.