How To Install gpsshogi-viewer on Debian 12

Learn how to install gpsshogi-viewer on Debian 12 with this tutorial. gpsshogi-viewer is Shogi studying GUI based on OpenShogiLib

Introduction

In this tutorial we learn how to install gpsshogi-viewer on Debian 12.

What is gpsshogi-viewer

gpsshogi-viewer is:

GPSShogi is a Shogi playing program based on OpenShogiLib and won the 19th World Computer Shogi Championship. This package contains the gpsshogi-viewer GUI application to investigate positions.

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

Install gpsshogi-viewer Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install gpsshogi-viewer

Install gpsshogi-viewer Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install gpsshogi-viewer

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

sudo aptitude -y install gpsshogi-viewer

How To Uninstall gpsshogi-viewer on Debian 12

To uninstall only the gpsshogi-viewer package we can use the following command:

sudo apt-get remove gpsshogi-viewer

Uninstall gpsshogi-viewer And Its Dependencies

To uninstall gpsshogi-viewer and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove gpsshogi-viewer

Remove gpsshogi-viewer Configurations and Data

To remove gpsshogi-viewer configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge gpsshogi-viewer

Remove gpsshogi-viewer configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge gpsshogi-viewer

Dependencies

gpsshogi-viewer have the following dependencies:

References

Summary

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