How To Install scribus-data on Ubuntu 18.04

In this tutorial we learn how to install scribus-data on Ubuntu 18.04. scribus-data is Open Source Desktop Page Layout - stable branch (data files)

Introduction

In this tutorial we learn how to install scribus-data on Ubuntu 18.04.

What is scribus-data

scribus-data is:

Scribus is an open source desktop page layout program with the aim of producing commercial grade output in PDF and Postscript.

Scribus can be used for many tasks; from brochure design to newspapers, magazines, newsletters and posters to technical documentation.

Scribus supports professional DTP features, such as CMYK color and a color management system to soft proof images for high quality color printing, flexible PDF creation options, Encapsulated PostScript import/export and creation of 4 color separations, import of EPS/PS and SVG as native vector graphics, Unicode text including right to left scripts such as Arabic and Hebrew via freetype. Graphic formats which can be placed in Scribus as images include PDF, Encapsulated Post Script (eps), TIFF, JPEG, PNG and XPixMap(xpm), and any bitmap type supported by QT4.

This package contains the architecture-independent files.

There are three methods to install scribus-data 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.

Install scribus-data Using apt-get

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

sudo apt-get update

After updating apt database, We can install scribus-data using apt-get by running the following command:

sudo apt-get -y install scribus-data

Install scribus-data Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install scribus-data using apt by running the following command:

sudo apt -y install scribus-data

Install scribus-data 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 scribus-data using aptitude by running the following command:

sudo aptitude -y install scribus-data

How To Uninstall scribus-data on Ubuntu 18.04

To uninstall only the scribus-data package we can use the following command:

sudo apt-get remove scribus-data

Uninstall scribus-data And Its Dependencies

To uninstall scribus-data and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove scribus-data

Remove scribus-data Configurations and Data

To remove scribus-data configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge scribus-data

Remove scribus-data configuration, data, and all of its dependencies

We can use the following command to remove scribus-data configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge scribus-data

References

Summary

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