How To Install apoo on Debian 9

In this tutorial we learn how to install apoo on Debian 9. apoo is Assembly course aid

Introduction

In this tutorial we learn how to install apoo on Debian 9.

What is apoo

apoo is:

A virtual machine (a CPU) created for teaching purposes. All the programs are written in Python and are very easy to extend to incorporate new assembly-like pseudo-instuctions. A gtk2-based interface is provided, to help debugging or just examining the execution of programs. Another program permits a tutor to create exercises and write rules to automatically grade the students’ solutions.

There are three methods to install apoo on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install apoo Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install apoo

Install apoo Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install apoo using apt by running the following command:

sudo apt -y install apoo

Install apoo 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 Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install apoo using aptitude by running the following command:

sudo aptitude -y install apoo

How To Uninstall apoo on Debian 9

To uninstall only the apoo package we can use the following command:

sudo apt-get remove apoo

Uninstall apoo And Its Dependencies

To uninstall apoo and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove apoo

Remove apoo Configurations and Data

To remove apoo configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge apoo

Remove apoo configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge apoo

Dependencies

apoo have the following dependencies:

References

Summary

In this tutorial we learn how to install apoo package on Debian 9 using different package management tools: apt, apt-get and aptitude.