How To Install python-ruffus-doc on Ubuntu 18.04

In this tutorial we learn how to install python-ruffus-doc on Ubuntu 18.04. python-ruffus-doc is documentation for python-ruffus computation pipeline library

Introduction

In this tutorial we learn how to install python-ruffus-doc on Ubuntu 18.04.

What is python-ruffus-doc

python-ruffus-doc is:

Ruffus is designed to allow scientific and other analyses to be automated with the minimum of fuss and the least effort.

  • Lightweight: Suitable for the simplest of tasks
  • Scalable: Handles even fiendishly complicated pipelines which would cause make or scons to go cross-eyed and recursive.
  • Standard Python: No “clever magic”, no pre-processing.
  • Unintrusive: Unambitious, lightweight syntax which tries to do this one small thing well.

This package provides modules documentation.

There are three methods to install python-ruffus-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.

Install python-ruffus-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 python-ruffus-doc using apt-get by running the following command:

sudo apt-get -y install python-ruffus-doc

Install python-ruffus-doc Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install python-ruffus-doc using apt by running the following command:

sudo apt -y install python-ruffus-doc

Install python-ruffus-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 python-ruffus-doc using aptitude by running the following command:

sudo aptitude -y install python-ruffus-doc

How To Uninstall python-ruffus-doc on Ubuntu 18.04

To uninstall only the python-ruffus-doc package we can use the following command:

sudo apt-get remove python-ruffus-doc

Uninstall python-ruffus-doc And Its Dependencies

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

sudo apt-get -y autoremove python-ruffus-doc

Remove python-ruffus-doc Configurations and Data

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

sudo apt-get -y purge python-ruffus-doc

Remove python-ruffus-doc configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge python-ruffus-doc

References

Summary

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