How To Install cloog-ppl on Ubuntu 18.04

In this tutorial we learn how to install cloog-ppl on Ubuntu 18.04. cloog-ppl is Chunky Loop Generator

Introduction

In this tutorial we learn how to install cloog-ppl on Ubuntu 18.04.

What is cloog-ppl

cloog-ppl is:

CLooG is a software which generates loops for scanning Z-polyhedra.

This package contains the cloog binary.

There are three methods to install cloog-ppl 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 cloog-ppl Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install cloog-ppl

Install cloog-ppl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install cloog-ppl

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

sudo aptitude -y install cloog-ppl

How To Uninstall cloog-ppl on Ubuntu 18.04

To uninstall only the cloog-ppl package we can use the following command:

sudo apt-get remove cloog-ppl

Uninstall cloog-ppl And Its Dependencies

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

sudo apt-get -y autoremove cloog-ppl

Remove cloog-ppl Configurations and Data

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

sudo apt-get -y purge cloog-ppl

Remove cloog-ppl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge cloog-ppl

References

Summary

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