How To Install plee-the-bear on Debian 10
Introduction
In this tutorial we learn how to install plee-the-bear
on Debian 10.
What is plee-the-bear
plee-the-bear is:
Plee the Bear will be a 2D platform game like those found on consoles in the beginning of the 90’s. The basis of the scenario fit in few lines:
4 PM or so, Plee wakes up, tired. He has dreamed again about that awesome period when he went across the entire world together with his belle. He puts his leg in the honey pot… empty! Moreover every single honey pot in the house is empty. “One more trick of that kid”, he thinks. “I’m going to give him such a wallop of which he sure will remember”.
Following honey drops on the ground, Plee reaches the edge of the forest. Beginning of the game.
The current version is a demo.
There are three methods to install plee-the-bear
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install plee-the-bear Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install plee-the-bear
using apt-get
by running the following command:
sudo apt-get -y install plee-the-bear
Install plee-the-bear Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install plee-the-bear
using apt
by running the following command:
sudo apt -y install plee-the-bear
Install plee-the-bear 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 plee-the-bear
using aptitude
by running the following command:
sudo aptitude -y install plee-the-bear
How To Uninstall plee-the-bear on Debian 10
To uninstall only the plee-the-bear
package we can use the following command:
sudo apt-get remove plee-the-bear
Uninstall plee-the-bear And Its Dependencies
To uninstall plee-the-bear
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove plee-the-bear
Remove plee-the-bear Configurations and Data
To remove plee-the-bear
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge plee-the-bear
Remove plee-the-bear configuration, data, and all of its dependencies
We can use the following command to remove plee-the-bear
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge plee-the-bear
Dependencies
plee-the-bear have the following dependencies:
- libboost-filesystem1.67.0
- libboost-regex1.67.0
- libboost-system1.67.0
- libboost-thread1.67.0
- libc6
- libclaw-application1v5
- libclaw-configuration-file1v5
- libclaw-dynamic-library1v5
- libclaw-graphic1v5
- libclaw-logger1v5
- libclaw-net1v5
- libclaw-tween1v5
- libgcc1
References
Summary
In this tutorial we learn how to install plee-the-bear
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.