How To Install starlink-table-java-doc on Ubuntu 18.04

In this tutorial we learn how to install starlink-table-java-doc on Ubuntu 18.04. starlink-table-java-doc is Starlink Tables Infrastructure Library (documentation)

Introduction

In this tutorial we learn how to install starlink-table-java-doc on Ubuntu 18.04.

starlink-table-java-doc is:

STIL is a pure Java library for generic input, output and processing of tabular data. It presents to the application programmer a view of a table which looks the same regardless of whether it came from a FITS file, a VOTable, an ASCII text file, a query on a relational database, or whatever. Thus the application doesn’t have to worry about the storage format of tables either when reading or writing them, it can concentrate on doing processing. STIL’s idea of a table is rich enough to include table and column metadata, and table cells which contain scalar or single- or multi-dimensional array data of numerical, string or other types. This is well suited to astronomical data, though it can be of use in other fields as well.

STIL comes with a range of supported input and output formats (including VOTable, FITS, SQL, ASCII, CSV, CDF, GBIN) and can be extended to cope with others.

This package contains the JavaDoc documentation of the package.

There are three methods to install starlink-table-java-doc on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install starlink-table-java-doc using apt-get by running the following command:

sudo apt-get -y install starlink-table-java-doc

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install starlink-table-java-doc using apt by running the following command:

sudo apt -y install starlink-table-java-doc

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 starlink-table-java-doc using aptitude by running the following command:

sudo aptitude -y install starlink-table-java-doc

To uninstall only the starlink-table-java-doc package we can use the following command:

sudo apt-get remove starlink-table-java-doc

To uninstall starlink-table-java-doc and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove starlink-table-java-doc

To remove starlink-table-java-doc configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge starlink-table-java-doc

We can use the following command to remove starlink-table-java-doc configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge starlink-table-java-doc

References

Summary

In this tutorial we learn how to install starlink-table-java-doc package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.