How To Install between on Debian 10
Introduction
In this tutorial we learn how to install between
on Debian 10.
What is between
between is:
Between is a pixelated art game for two players by Jason Rohrer.
You know exactly what you need to do – you can see it shimmering right there in front of you. You can see it while dreaming, too, and the difference has become subtle. Dreams wake into dreams, and people blend in and out: real characters and dream characters, all woven into the same script. Finally, they fade completely, and you’re alone in the expanse with the construction. With time, you feel something growing, a pinhole that eventually yawns into a deep ravine of longing. The construction languishes, though the expanse seems indifferent.
One night, in a dream, they appear: things that you clearly could not have conjured on your own. Not snowflakes. Not the self-similar forms of leaves. Not distant planets’ erosion networks as viewed through telescopes. Not those things that are beautifully external but lack the signatures of consciousness. These things that appear are ugly and non-procedural: indecipherable transmissions bubbling up through static, faded messages floating in bottles, and charcoal handprints on cave walls. Evidence has reached you through time of unknown duration and distance of unknown magnitude, but stale evidence is still evidence.
Somewhere, across whatever barriers stand between, is an “other”.
There are three methods to install between
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 between Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install between
using apt-get
by running the following command:
sudo apt-get -y install between
Install between Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install between
using apt
by running the following command:
sudo apt -y install between
Install between 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 between
using aptitude
by running the following command:
sudo aptitude -y install between
How To Uninstall between on Debian 10
To uninstall only the between
package we can use the following command:
sudo apt-get remove between
Uninstall between And Its Dependencies
To uninstall between
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove between
Remove between Configurations and Data
To remove between
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge between
Remove between configuration, data, and all of its dependencies
We can use the following command to remove between
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge between
Dependencies
between have the following dependencies:
References
Summary
In this tutorial we learn how to install between
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.