How To Install parsec47 on Ubuntu 18.04
Introduction
In this tutorial we learn how to install parsec47 on Ubuntu 18.04.
What is parsec47
parsec47 is:
PARSEC47 is a retromodern hi-speed shoot ’em up where you get to defeat retro enemies modernly. The player must destroy enemies while avoiding their projectiles and collecting green clusters of boxes for points.
PARSEC47 is another gem among many by Kenta Cho.
There are three methods to install parsec47 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 parsec47 Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install parsec47 using apt-get by running the following command:
sudo apt-get -y install parsec47
Install parsec47 Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install parsec47 using apt by running the following command:
sudo apt -y install parsec47
Install parsec47 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 parsec47 using aptitude by running the following command:
sudo aptitude -y install parsec47
How To Uninstall parsec47 on Ubuntu 18.04
To uninstall only the parsec47 package we can use the following command:
sudo apt-get remove parsec47
Uninstall parsec47 And Its Dependencies
To uninstall parsec47 and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:
sudo apt-get -y autoremove parsec47
Remove parsec47 Configurations and Data
To remove parsec47 configuration and data from Ubuntu 18.04 we can use the following command:
sudo apt-get -y purge parsec47
Remove parsec47 configuration, data, and all of its dependencies
We can use the following command to remove parsec47 configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge parsec47
References
Summary
In this tutorial we learn how to install parsec47 package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.